mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 04:11:03 +00:00
13 lines
230 B
Go
13 lines
230 B
Go
package main
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
var globalSecretCmd = cli.Command{
|
|
Name: "secret",
|
|
Usage: "manage secrets",
|
|
Subcommands: []cli.Command{
|
|
globalSecretAddCmd,
|
|
globalSecretRemoveCmd,
|
|
globalSecretListCmd,
|
|
},
|
|
}
|