gitdeploy/internal/options/options.go

25 lines
384 B
Go
Raw Normal View History

2020-09-28 23:39:05 +00:00
package options
import (
"flag"
)
var Server *ServerConfig
type ServerConfig struct {
Addr string
TrustProxy bool
Compress bool
ServePath string
2020-09-29 03:15:30 +00:00
Exec string
2020-09-28 23:39:05 +00:00
}
var ServerFlags *flag.FlagSet
var InitFlags *flag.FlagSet
var DefaultMaxBodySize int64 = 1024 * 1024
func init() {
Server = &ServerConfig{}
ServerFlags = flag.NewFlagSet("run", flag.ExitOnError)
}