summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-24 22:55:34 -0600
committerJeff Carr <[email protected]>2024-01-24 22:55:34 -0600
commit8de0a3092e0f9004e5bb2ded0039f1297073a670 (patch)
treec3bbb2e7107380f7d8e66558d00f9ba5a23e5102 /args.go
parent1c2dfda279cd69493f40fa5780b9ecad6eb55cb9 (diff)
new guiv0.13.0
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'args.go')
-rw-r--r--args.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/args.go b/args.go
index ffc4376..e07355c 100644
--- a/args.go
+++ b/args.go
@@ -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")
}