mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-18 07:54:28 +00:00
14 lines
235 B
Go
14 lines
235 B
Go
|
package main
|
||
|
|
||
|
import "github.com/codegangsta/cli"
|
||
|
|
||
|
var globalSecretCmd = cli.Command{
|
||
|
Name: "secret",
|
||
|
Usage: "manage secrets",
|
||
|
Subcommands: []cli.Command{
|
||
|
globalSecretAddCmd,
|
||
|
globalSecretRemoveCmd,
|
||
|
globalSecretListCmd,
|
||
|
},
|
||
|
}
|