github.com/ranjib/nomad@v0.1.1-0.20160225204057-97751b02f70b/command/fs.go (about)

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