summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-07 15:24:59 -0600
committerJeff Carr <[email protected]>2024-02-07 15:24:59 -0600
commited5857af77edb5a8369fc0a9fb4e93c282fa5664 (patch)
tree50151af8db365084252284eea74a4434d3a2c5ef /args.go
parent3d4e297db93544fe1380178ec4cb7fc286b2dc4c (diff)
trying to debug box direction
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'args.go')
-rw-r--r--args.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/args.go b/args.go
new file mode 100644
index 0000000..0f45f70
--- /dev/null
+++ b/args.go
@@ -0,0 +1,30 @@
+package main
+
+/*
+ this parses the command line arguements
+
+ this enables command line options from other packages like 'gui' and 'log'
+*/
+
+import (
+ "go.wit.com/dev/alexflint/arg"
+ "go.wit.com/lib/debugger"
+ "go.wit.com/log"
+)
+
+ // GadgetDisplay string `arg:"env:DISPLAY"`
+ // GadgetTmpLog bool `arg:"--tmp-log" help:"automatically send STDOUT to /tmp"`
+ // GadgetVerboseDNS bool `arg:"--verbose" help:"debug your dns settings"`
+var args struct {
+ TmpLog bool `arg:"--tmp-log" help:"automatically send STDOUT to /tmp"`
+}
+
+func init() {
+ arg.MustParse(&args)
+
+ if debugger.ArgDebug() {
+ log.Info("cmd line --debugger == true")
+ } else {
+ log.Info("cmd line --debugger == false")
+ }
+}