github.com/devcamcar/cli@v0.0.0-20181107134215-706a05759d18/commands/get.go (about)

     1  package commands
     2  
     3  import (
     4  	"github.com/urfave/cli"
     5  )
     6  
     7  // GetCommand returns get cli.command
     8  func GetCommand() cli.Command {
     9  	return cli.Command{
    10  		Name:        "get",
    11  		Aliases:     []string{"g"},
    12  		Usage:       "\tGet an object to retrieve its information",
    13  		Category:    "MANAGEMENT COMMANDS",
    14  		Hidden:      false,
    15  		ArgsUsage:   "<subcommand>",
    16  		Description: "This command gets a 'call', 'configuration' or 'log' to retrieve information for an object ('app' or 'function').",
    17  		Subcommands: GetCommands(GetCmds),
    18  	}
    19  }