diff options
Diffstat (limited to 'args.go')
| -rw-r--r-- | args.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3,7 +3,7 @@ package digitalocean // initializes logging and command line options import ( - "go.wit.com/arg" + "go.wit.com/dev/alexflint/arg" "go.wit.com/log" ) @@ -19,10 +19,10 @@ type ArgsDo struct { func init() { arg.Register(&argDo) - full := "go.wit.com/gui/digitalocean" + full := "go.wit.com/lib/gui/digitalocean" short := "DOgui" - NOW = log.NewFlag( "NOW", true, full, short, "temp debugging stuff") + NOW = log.NewFlag("NOW", true, full, short, "temp debugging stuff") INFO = log.NewFlag("INFO", false, full, short, "normal debugging stuff") INFO = log.NewFlag("POLL", false, full, short, "show droplet status polling") } |
