summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-03-12 07:54:03 -0500
committerJeff Carr <[email protected]>2025-03-12 07:54:03 -0500
commita024c9ece14d3097b3f72f2dc831444afd695d86 (patch)
tree30f7a5ea7c40b81e3c7e57605ff5d0a8e733217f /argv.go
parentc2f796de1e07e59bb379fa4e0a222bc13dcfe571 (diff)
attempting to pass off the socket
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/argv.go b/argv.go
index 25c03c1..f434ca3 100644
--- a/argv.go
+++ b/argv.go
@@ -17,6 +17,7 @@ var argv args
type args struct {
Verbose bool `arg:"--verbose" help:"talk more"`
Daemon bool `arg:"--daemon" default:"false" help:"run in daemon mode"`
+ UseME bool `arg:"--me" help:"use /me to connect"`
Port int `arg:"--port" default:"2522" help:"port to run on"`
URL string `arg:"--url" help:"url to use"`
Config string `arg:"--config" help:"config file (default is ~/.config/cloud/gus.text"`
@@ -28,7 +29,9 @@ func (args) Version() string {
func (a args) Description() string {
return `
- this daemon talks to zookeeper
+ "Phantastic Gus" your network squirrel
+
+ * Meet [the Phantastic squirrel Gus](https://www.youtube.com/watch?v=hFZFjoX2cGg)
`
}