github.com/blixtra/nomad@v0.7.2-0.20171221000451-da9a1d7bb050/command/deployment.go (about)

     1  package command
     2  
     3  import "github.com/mitchellh/cli"
     4  
     5  type DeploymentCommand struct {
     6  	Meta
     7  }
     8  
     9  func (f *DeploymentCommand) Help() string {
    10  	return "This command is accessed by using one of the subcommands below."
    11  }
    12  
    13  func (f *DeploymentCommand) Synopsis() string {
    14  	return "Interact with deployments"
    15  }
    16  
    17  func (f *DeploymentCommand) Run(args []string) int {
    18  	return cli.RunResultHelp
    19  }