mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-05 10:20:36 +02: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,
|
|
},
|
|
}
|