1
0
mirror of https://github.com/drone/drone-cli.git synced 2024-11-26 14:13:47 +01:00
drone-cli/drone/repo/repo.go

20 lines
324 B
Go
Raw Normal View History

2017-05-15 13:59:26 +02:00
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,
2018-05-15 18:55:20 +02:00
repoSyncCmd,
2017-05-15 13:59:26 +02:00
},
}