summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
Diffstat (limited to 'args.go')
-rw-r--r--args.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/args.go b/args.go
new file mode 100644
index 0000000..6ecea2d
--- /dev/null
+++ b/args.go
@@ -0,0 +1,20 @@
+package cloudflare
+
+// initializes logging and command line options
+
+import (
+ "go.wit.com/log"
+)
+
+var CURL log.LogFlag
+var POLL log.LogFlag
+var BUG log.LogFlag
+
+func init() {
+ CURL.B = true
+ CURL.Name = "CURL"
+ CURL.Subsystem = "cloudflare"
+ CURL.Short = "gui cf"
+ CURL.Desc = "curl interactions()"
+ CURL.Register()
+}