github.com/devcamcar/cli@v0.0.0-20181107134215-706a05759d18/commands/unset.go (about) 1 package commands 2 3 import ( 4 "github.com/urfave/cli" 5 ) 6 7 // UnsetCommand returns unset cli.command 8 func UnsetCommand() cli.Command { 9 return cli.Command{ 10 Name: "unset", 11 Aliases: []string{"un"}, 12 Usage: "\tUnset elements of a created object", 13 Category: "MANAGEMENT COMMANDS", 14 Hidden: false, 15 ArgsUsage: "<subcommand>", 16 Description: "This command unsets elements ('configurations') for a created object ('app', 'function' or 'context').", 17 Subcommands: GetCommands(UnsetCmds), 18 } 19 }