mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-14 14:01:26 +00:00
188b9e6eb5
- move cli files from `cli/drone` to `cli/` - move cli main to `cmd/cli/main.go` to match agent and server - use version from `version/version.go` to match agent and server
19 lines
324 B
Go
19 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,
|
|
},
|
|
}
|