mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-19 16:31:01 +00:00
12 lines
183 B
Go
12 lines
183 B
Go
|
package main
|
||
|
|
||
|
import "github.com/codegangsta/cli"
|
||
|
|
||
|
var globalCmd = cli.Command{
|
||
|
Name: "global",
|
||
|
Usage: "manage global state",
|
||
|
Subcommands: []cli.Command{
|
||
|
globalSecretCmd,
|
||
|
},
|
||
|
}
|