1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-01-05 10:20:36 +02:00
woodpecker/drone/repo.go

18 lines
266 B
Go
Raw Normal View History

package main
2017-03-16 12:14:02 +02:00
import "github.com/urfave/cli"
var repoCmd = cli.Command{
Name: "repo",
Usage: "manage repositories",
Subcommands: []cli.Command{
repoListCmd,
repoInfoCmd,
repoAddCmd,
repoUpdateCmd,
repoRemoveCmd,
2017-04-12 18:31:37 +02:00
repoRepairCmd,
repoChownCmd,
},
}