woodpecker/drone/repo/repo.go

19 lines
309 B
Go
Raw Normal View History

2017-04-29 17:03:45 +00:00
package repo
2017-03-16 10:14:02 +00:00
import "github.com/urfave/cli"
2017-04-29 17:03:45 +00:00
// Command exports the repository command.
var Command = cli.Command{
Name: "repo",
Usage: "manage repositories",
Subcommands: []cli.Command{
repoListCmd,
repoInfoCmd,
repoAddCmd,
repoUpdateCmd,
repoRemoveCmd,
2017-04-12 16:31:37 +00:00
repoRepairCmd,
repoChownCmd,
},
}