delete unneeded plugin file

This commit is contained in:
Megan Marsh 2017-09-28 10:52:54 -07:00
parent 33af0c4c86
commit b4659945b3
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
package main
import (
"github.com/hashicorp/packer/builder/lxc"
"github.com/hashicorp/packer/packer/plugin"
)
func main() {
server, err := plugin.Server()
if err != nil {
panic(err)
}
server.RegisterBuilder(new(lxc.Builder))
server.Serve()
}