32 lines
757 B
Go
32 lines
757 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 {
|
|
Pull *EmptyCmd `arg:"subcommand:pull" help:"list the repos"`
|
|
List *EmptyCmd `arg:"subcommand:list" help:"list the repos"`
|
|
Init *EmptyCmd `arg:"subcommand:init" help:"list the repos"`
|
|
Port int `arg:"--port" default:"2520" help:"port to run on"`
|
|
Hostname string `arg:"--hostname" default:"forge.wit.com" help:"hostname to use"`
|
|
}
|
|
|
|
type EmptyCmd struct {
|
|
}
|
|
|
|
func (args) Version() string {
|
|
return "forged " + VERSION + " Built on " + BUILDTIME
|
|
}
|
|
|
|
func init() {
|
|
arg.MustParse(&argv)
|
|
}
|