summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-05 18:52:47 -0600
committerJeff Carr <[email protected]>2024-01-05 18:52:47 -0600
commitd3536a2b2881c6103bd39fb14ffa0b8484c3edc5 (patch)
treedc627890bfb54879b4e52f480d1cb68038da219b /args.go
parentc641154bf9c196bd43d588cab63c41b84ff38fec (diff)
cloudflare API changed
Signed-off-by: Jeff Carr <[email protected]>
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()
+}