plugin/*: update to latest API

This commit is contained in:
Mitchell Hashimoto
2013-12-10 13:59:38 -08:00
parent b4567c6380
commit 82bf5fc79e
21 changed files with 126 additions and 21 deletions
+6 -1
View File
@@ -6,5 +6,10 @@ import (
)
func main() {
plugin.ServeBuilder(new(openstack.Builder))
server, err := plugin.Server()
if err != nil {
panic(err)
}
server.RegisterBuilder(new(openstack.Builder))
server.Serve()
}