packer-cn/plugin/provisioner-file/main.go

11 lines
183 B
Go
Raw Normal View History

package main
import (
"github.com/mitchellh/packer/packer/plugin"
"github.com/mitchellh/packer/provisioner/file"
)
func main() {
plugin.ServeProvisioner(new(file.Provisioner))
}