diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4,10 +4,10 @@ import ( "os" "time" - "go.wit.com/log" "go.wit.com/gui" "go.wit.com/lib/debugger" "go.wit.com/lib/gui/digitalocean" + "go.wit.com/log" ) var title string = "Droplet Control Panel" @@ -41,7 +41,7 @@ func cloudApp(n *gui.Node) *gui.Node { box := win.Box() grid := box.NewGrid("grid", 2, 1).Pad() - grid.NewButton("Show Droplets", func () { + grid.NewButton("Show Droplets", func() { if myDo == nil { myDo = digitalocean.New(myGui) } else { @@ -50,13 +50,13 @@ func cloudApp(n *gui.Node) *gui.Node { }) grid.NewLabel("initializes the DO golang gui package") - grid.NewButton("Create", func () { + grid.NewButton("Create", func() { // myDo.Create("jcarr.wit.com") digitalocean.InitCreateWindow() }) grid.NewLabel("makes a new droplet") - box.NewButton("gui debugger", func () { + box.NewButton("gui debugger", func() { debugger.DebugWindow() }) grid.NewLabel("make sure you have $ENV(DIGITALOCEAN_TOKEN} set to your API token") |
