refactor(server): Move server to package
This commit is contained in:
22
pkg/args/args.go
Normal file
22
pkg/args/args.go
Normal file
@@ -0,0 +1,22 @@
|
||||
package args
|
||||
|
||||
import "git.ostiwe.com/ostiwe-com/status/version"
|
||||
|
||||
type ServerCmd struct {
|
||||
Port string `arg:"-p,--port" help:"Port to listen on" default:"8080"`
|
||||
}
|
||||
|
||||
type ServerDocumentationCmd struct {
|
||||
Port string `arg:"-p,--port" help:"Port to listen on" default:"8081"`
|
||||
Plain bool `arg:"--plain" help:"Enable plain text output" default:"true"`
|
||||
PlainFormat string `arg:"--plain-format" help:"Set format for output (json, yaml)" default:"yaml"`
|
||||
}
|
||||
|
||||
type AppArgs struct {
|
||||
Server *ServerCmd `arg:"subcommand:server" help:"Start the api server"`
|
||||
ServerDocumentation *ServerDocumentationCmd `arg:"subcommand:server-docs" help:"Generate documentation for api server"`
|
||||
}
|
||||
|
||||
func (AppArgs) Version() string {
|
||||
return version.AppVersion()
|
||||
}
|
||||
Reference in New Issue
Block a user