From 4bc92ccddd52c0a7454247cb226ce085e62394e8 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 29 Jun 2025 21:15:29 -0500 Subject: initial start after split from gowebd --- argv.go | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 argv.go (limited to 'argv.go') 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) +} -- cgit v1.2.3