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