plugin/builder-virtualbox: new package

This commit is contained in:
Mitchell Hashimoto 2013-12-21 14:27:23 -08:00
parent afd67ea104
commit 09c3d67c51
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
package main
import (
"github.com/mitchellh/packer/builder/virtualbox"
"github.com/mitchellh/packer/builder/virtualbox/iso"
"github.com/mitchellh/packer/packer/plugin"
)
@ -10,6 +10,6 @@ func main() {
if err != nil {
panic(err)
}
server.RegisterBuilder(new(virtualbox.Builder))
server.RegisterBuilder(new(iso.Builder))
server.Serve()
}