diff options
| author | Jeff Carr <[email protected]> | 2025-10-19 06:25:16 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-19 06:25:16 -0500 |
| commit | a1792c4e1afb1e8901f05e41e61add8f39038055 (patch) | |
| tree | 3d20f8851f7d84f629469f18c7c9471734346bb6 /structs.go | |
| parent | f63123ba2326b9b78b3762b856713b8dc643789b (diff) | |
new argvv0.0.108
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -6,6 +6,7 @@ package main import ( "time" + "go.wit.com/dev/alexflint/arg" "go.wit.com/lib/protobuf/argvpb" "go.wit.com/lib/protobuf/zoopb" ) @@ -14,7 +15,10 @@ var me *zoodStruct // this app's variables type zoodStruct struct { - sh *argvpb.Argv // shell autocomplete + argv *argvpb.Argv // more experiments for bash handling + pp *arg.Parser // for parsing the command line args. Yay to alexf lint! + // myGui *fhelp.GuiPrep // for initializing the GUI toolkits + urlbase string // the dns name for the zookeeper hostname string // my hostname pollDelay time.Duration // how often to report our status |
