open-nomad/command/job.go
2016-12-04 21:22:13 -08:00

20 lines
347 B
Go

package command
import "github.com/mitchellh/cli"
type JobCommand struct {
Meta
}
func (f *JobCommand) Help() string {
return "This command is accessed by using one of the subcommands below."
}
func (f *JobCommand) Synopsis() string {
return "Interact with jobs"
}
func (f *JobCommand) Run(args []string) int {
return cli.RunResultHelp
}