2016-05-06 17:59:36 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import "github.com/codegangsta/cli"
|
|
|
|
|
|
|
|
var repoCmd = cli.Command{
|
|
|
|
Name: "repo",
|
|
|
|
Usage: "manage repositories",
|
|
|
|
Subcommands: []cli.Command{
|
|
|
|
repoListCmd,
|
|
|
|
repoInfoCmd,
|
|
|
|
repoAddCmd,
|
|
|
|
repoRemoveCmd,
|
2016-11-20 20:34:06 +00:00
|
|
|
repoChownCmd,
|
2016-05-06 17:59:36 +00:00
|
|
|
},
|
|
|
|
}
|