packer/plugin/post-processor-compress/main.go
Mitchell Hashimoto b98df11cbf fmt
2013-06-18 21:54:33 -07:00

10 lines
198 B
Go

package main
import (
"github.com/mitchellh/packer/packer/plugin"
"github.com/mitchellh/packer/post-processor/compress"
)
func main() {
plugin.ServePostProcessor(new(compress.PostProcessor))
}