13 lines
223 B
Go
13 lines
223 B
Go
package main
|
|
|
|
import "github.com/codegangsta/cli"
|
|
|
|
var orgSecretCmd = cli.Command{
|
|
Name: "secret",
|
|
Usage: "manage secrets",
|
|
Subcommands: []cli.Command{
|
|
orgSecretAddCmd,
|
|
orgSecretRemoveCmd,
|
|
orgSecretListCmd,
|
|
},
|
|
}
|