harness-drone/drone/global_secret.go

14 lines
230 B
Go
Raw Normal View History

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