mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-20 00:41:02 +00:00
15 lines
237 B
Go
15 lines
237 B
Go
package main
|
|
|
|
import "github.com/codegangsta/cli"
|
|
|
|
var repoCmd = cli.Command{
|
|
Name: "repo",
|
|
Usage: "manage repositories",
|
|
Subcommands: []cli.Command{
|
|
repoListCmd,
|
|
repoInfoCmd,
|
|
repoAddCmd,
|
|
repoRemoveCmd,
|
|
repoChownCmd,
|
|
},
|
|
}
|