open-nomad/command/server.go

20 lines
362 B
Go
Raw Normal View History

2018-03-21 00:37:28 +00:00
package command
import "github.com/mitchellh/cli"
type ServerCommand struct {
Meta
}
func (f *ServerCommand) Help() string {
return "This command is accessed by using one of the subcommands below."
}
func (f *ServerCommand) Synopsis() string {
return "Interact with servers"
}
func (f *ServerCommand) Run(args []string) int {
return cli.RunResultHelp
}