16 lines
282 B
Go
16 lines
282 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/mitchellh/packer/packer/plugin"
|
||
|
"github.com/mitchellh/packer/post-processor/artifice"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
server, err := plugin.Server()
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
server.RegisterPostProcessor(new(artifice.PostProcessor))
|
||
|
server.Serve()
|
||
|
}
|