11 lines
198 B
Go
11 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))
|
|
}
|