github.com/wiselike/revel-cmd@v1.2.1/model/command/package.go (about)

     1  package command
     2  
     3  type (
     4  	Package struct {
     5  		ImportCommand
     6  		TargetPath string `short:"t" long:"target-path" description:"Full path and filename of target package to deploy" required:"false"`
     7  		Mode       string `short:"m" long:"run-mode" description:"The mode to run the application in"`
     8  		CopySource bool   `short:"s" long:"include-source" description:"Copy the source code as well"`
     9  	}
    10  )