diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-10-13 10:02:05 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-10-13 10:02:05 -0700 |
commit | 067e9814f077ca8ea2068ee4cf46449770d69d86 (patch) | |
tree | 1455faf943ff0ae5141239fb8e715b79d6380948 /cmd/ponzu/main.go | |
parent | d4d938d634552eed167688409a90cfe698b35653 (diff) |
adding delete button (test)
Diffstat (limited to 'cmd/ponzu/main.go')
-rw-r--r-- | cmd/ponzu/main.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/ponzu/main.go b/cmd/ponzu/main.go index 39fa173..ee5ae1f 100644 --- a/cmd/ponzu/main.go +++ b/cmd/ponzu/main.go @@ -72,6 +72,9 @@ generate, gen, g <type>: var ( port int tls bool + + // for ponzu internal / core development + dev bool ) func init() { @@ -83,6 +86,7 @@ func init() { func main() { flag.IntVar(&port, "port", 8080, "port for ponzu to bind its listener") flag.BoolVar(&tls, "tls", false, "enable automatic TLS/SSL certificate management") + flag.BoolVar(&dev, "dev", false, "modify environment for Ponzu core development") flag.Parse() args := flag.Args() |