summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-06-29 21:15:29 -0500
committerJeff Carr <[email protected]>2025-06-29 21:15:29 -0500
commit4bc92ccddd52c0a7454247cb226ce085e62394e8 (patch)
tree82c74485c62db923fde2cf4a3e5827e780c02a16 /argv.go
initial start after split from gowebdv0.0.1
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/argv.go b/argv.go
new file mode 100644
index 0000000..ab69ec4
--- /dev/null
+++ b/argv.go
@@ -0,0 +1,25 @@
+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"
+)
+
+var argv args
+
+type args struct {
+ Port int `arg:"--port" default:"2520" help:"port to run on"`
+ Hostname string `arg:"--hostname" default:"forge.wit.com" help:"hostname to use"`
+}
+
+func (args) Version() string {
+ return "forged " + VERSION + " Built on " + BUILDTIME
+}
+
+func init() {
+ arg.MustParse(&argv)
+}