diff options
| author | Jeff Carr <[email protected]> | 2025-06-29 21:15:29 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-06-29 21:15:29 -0500 |
| commit | 4bc92ccddd52c0a7454247cb226ce085e62394e8 (patch) | |
| tree | 82c74485c62db923fde2cf4a3e5827e780c02a16 /argv.go | |
initial start after split from gowebdv0.0.1
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -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) +} |
