github.com/engineyard/workflow-cli@v2.21.6+incompatible/cli/cli.go (about)

     1  package cli
     2  
     3  // Shortcuts is a map of all the shortcuts supported by the CLI
     4  var Shortcuts = map[string]string{
     5  	"create":         "apps:create",
     6  	"destroy":        "apps:destroy",
     7  	"info":           "apps:info",
     8  	"login":          "auth:login",
     9  	"logout":         "auth:logout",
    10  	"logs":           "apps:logs",
    11  	"open":           "apps:open",
    12  	"passwd":         "auth:passwd",
    13  	"pull":           "builds:create",
    14  	"register":       "auth:register",
    15  	"rollback":       "releases:rollback",
    16  	"run":            "apps:run",
    17  	"scale":          "ps:scale",
    18  	"sharing":        "perms:list",
    19  	"sharing:list":   "perms:list",
    20  	"sharing:add":    "perms:create",
    21  	"sharing:remove": "perms:delete",
    22  	"whoami":         "auth:whoami",
    23  }