summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
Diffstat (limited to 'args.go')
-rw-r--r--args.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/args.go b/args.go
new file mode 100644
index 0000000..cfb8ebb
--- /dev/null
+++ b/args.go
@@ -0,0 +1,18 @@
+package cloudflare
+
+// initializes logging and command line options
+
+import (
+ "go.wit.com/log"
+)
+
+var INFO log.LogFlag
+
+func init() {
+ INFO.B = false
+ INFO.Name = "INFO"
+ INFO.Subsystem = "shell"
+ INFO.Short = "shell"
+ INFO.Desc = "general info"
+ INFO.Register()
+}