Merge pull request #28 from shykes/pr_out_gofmt

This commit is contained in:
Solomon Hykes 2014-06-04 19:18:13 -07:00
commit c213e05b40
2 changed files with 2 additions and 3 deletions

View File

@ -244,7 +244,7 @@ func (cloud GCECloud) CreateInstance(name string, zone string) (string, error) {
NetworkInterfaces: []*compute.NetworkInterface{
{
AccessConfigs: []*compute.AccessConfig{
&compute.AccessConfig{Type: "ONE_TO_ONE_NAT"},
{Type: "ONE_TO_ONE_NAT"},
},
Network: prefix + "/global/networks/default",
},

View File

@ -17,8 +17,7 @@ func main() {
app.Name = "swarmd"
app.Usage = "Compose distributed systems from lightweight services"
app.Version = "0.0.1"
app.Flags = []cli.Flag{
}
app.Flags = []cli.Flag{}
app.Action = cmdDaemon
app.Run(os.Args)
}