mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 18:31:00 +00:00
20 lines
324 B
Go
20 lines
324 B
Go
|
package repo
|
||
|
|
||
|
import "github.com/urfave/cli"
|
||
|
|
||
|
// Command exports the repository command.
|
||
|
var Command = cli.Command{
|
||
|
Name: "repo",
|
||
|
Usage: "manage repositories",
|
||
|
Subcommands: []cli.Command{
|
||
|
repoListCmd,
|
||
|
repoInfoCmd,
|
||
|
repoAddCmd,
|
||
|
repoUpdateCmd,
|
||
|
repoRemoveCmd,
|
||
|
repoRepairCmd,
|
||
|
repoChownCmd,
|
||
|
repoSyncCmd,
|
||
|
},
|
||
|
}
|