woodpecker/drone/global_secret.go

14 lines
235 B
Go
Raw Normal View History

2016-10-20 00:13:21 +00:00
package main
import "github.com/codegangsta/cli"
var globalSecretCmd = cli.Command{
Name: "secret",
Usage: "manage secrets",
Subcommands: []cli.Command{
globalSecretAddCmd,
globalSecretRemoveCmd,
globalSecretListCmd,
},
}