mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-01 22:31:15 +00:00
17 lines
284 B
Go
17 lines
284 B
Go
|
package secret
|
||
|
|
||
|
import "github.com/urfave/cli"
|
||
|
|
||
|
// Command exports the secret command.
|
||
|
var Command = cli.Command{
|
||
|
Name: "secret",
|
||
|
Usage: "manage secrets",
|
||
|
Subcommands: []cli.Command{
|
||
|
secretCreateCmd,
|
||
|
secretDeleteCmd,
|
||
|
secretUpdateCmd,
|
||
|
secretInfoCmd,
|
||
|
secretListCmd,
|
||
|
},
|
||
|
}
|