mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 20:31:10 +00:00
14 lines
223 B
Go
14 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,
|
||
|
},
|
||
|
}
|