def.go 357 B

1234567891011121314
  1. package main
  2. import "flag"
  3. var (
  4. /* Start Flags */
  5. httpPort = flag.Int("p", 9000, "Port to serve on (Plain HTTP)")
  6. devMode = flag.Bool("dev", false, "Enable development mode")
  7. config = flag.String("c", "./config", "Path to the config folder")
  8. serveSecure = flag.Bool("s", false, "Serve HTTPS. Default false")
  9. /* Runtime Variables */
  10. )