mirror of
https://github.com/kevin-DL/revel-cmd.git
synced 2026-01-12 02:55:16 +00:00
9 lines
388 B
Go
9 lines
388 B
Go
package command
|
|
type (
|
|
Package struct {
|
|
ImportCommand
|
|
TargetPath string `short:"t" long:"target-path" description:"Full path and filename of target package to deploy" required:"false"`
|
|
Mode string `short:"m" long:"run-mode" description:"The mode to run the application in"`
|
|
CopySource bool `short:"s" long:"include-source" description:"Copy the source code as well"`
|
|
}
|
|
) |