Files
revel-cmd/model/command/package.go
Paul Tötterman 3d924a016b Lint fixes
2020-10-19 13:40:52 +03:00

11 lines
390 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"`
}
)