From 3233c9d6ab3f936ce8f0ed876128d5aa40ef566d Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 5 Jan 2024 20:01:07 -0600 Subject: use 'go.wit.com/log' Signed-off-by: Jeff Carr --- args.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 args.go (limited to 'args.go') 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() +} -- cgit v1.2.3