mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-20 00:41:02 +00:00
12 lines
194 B
Go
12 lines
194 B
Go
package main
|
|
|
|
import "github.com/codegangsta/cli"
|
|
|
|
var secretCmd = cli.Command{
|
|
Name: "secret",
|
|
Usage: "manage secrets",
|
|
Subcommands: []cli.Command{
|
|
secretAddCmd,
|
|
secretRemoveCmd,
|
|
},
|
|
}
|