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

     1  package commands
     2  
     3  import (
     4  	"github.com/urfave/cli"
     5  )
     6  
     7  // ConfigureCommand returns configure cli.command
     8  func ConfigureCommand() cli.Command {
     9  	return cli.Command{
    10  		Name:        "config",
    11  		Aliases:     []string{"cf"},
    12  		Usage:       "\tSet configuration for an object",
    13  		Category:    "MANAGEMENT COMMANDS",
    14  		ArgsUsage:   "<subcommand>",
    15  		Description: "This command sets a configuaration key for an 'app' or 'function'.",
    16  		Subcommands: GetCommands(ConfigCmds),
    17  	}
    18  }