harness-drone/drone/repo.go

15 lines
221 B
Go
Raw Normal View History

package main
import "github.com/codegangsta/cli"
var repoCmd = cli.Command{
Name: "repo",
Usage: "manage repositories",
Subcommands: []cli.Command{
repoListCmd,
repoInfoCmd,
repoAddCmd,
repoRemoveCmd,
},
}