1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-03-03 15:22:25 +02:00
woodpecker/drone/repo.go

18 lines
266 B
Go
Raw Normal View History

package main
2017-03-16 18:14:02 +08: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,
},
}