Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // Version is the current application version Version = "dev" // GitCommit contains the Git commit SHA for the binary GitCommit string // BuildTime contains the binary build time BuildTime string // GoVersion contains the build time Go version GoVersion string )
Functions ¶
func SetDefaultOptions ¶
func SetDefaultOptions() error
SetDefaultOptions parses and assigns the options
Types ¶
type Options ¶
type Options struct {
Debug bool `short:"d" long:"debug" description:"Enable debugging mode"`
Version bool `short:"v" long:"version" description:"Show version"`
HTTPHost string `long:"bind" description:"HTTP server host" default:"localhost"`
HTTPPort uint `long:"listen" description:"HTTP server listen port" default:"8080"`
Prefix string `long:"prefix" description:"Add a url prefix"`
SkipOpen bool `short:"s" long:"skip-open" description:"Skip browser open on start"`
}
var Opts Options
func ParseOptions ¶
ParseOptions returns a new options struct from the input arguments
Click to show internal directories.
Click to hide internal directories.