github.com/terhitormanen/cmd@v1.1.4/model/command/run.go (about) 1 package command 2 3 type ( 4 Run struct { 5 ImportCommand 6 Mode string `short:"m" long:"run-mode" description:"The mode to run the application in"` 7 Port int `short:"p" long:"port" default:"-1" description:"The port to listen" ` 8 NoProxy bool `short:"n" long:"no-proxy" description:"True if proxy server should not be started. This will only update the main and routes files on change"` 9 } 10 )