packer/plugin/command-fix/main.go
2013-07-14 16:22:18 +09:00

10 lines
169 B
Go

package main
import (
"github.com/mitchellh/packer/command/fix"
"github.com/mitchellh/packer/packer/plugin"
)
func main() {
plugin.ServeCommand(new(fix.Command))
}