mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 10:21:00 +00:00
11 lines
175 B
Go
11 lines
175 B
Go
package main
|
|
|
|
import "github.com/codegangsta/cli"
|
|
|
|
var orgCmd = cli.Command{
|
|
Name: "org",
|
|
Usage: "manage organizations",
|
|
Subcommands: []cli.Command{
|
|
orgSecretCmd,
|
|
},
|
|
}
|