26 lines
500 B
Go
26 lines
500 B
Go
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)
|
|
}
|