mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 10:21:00 +00:00
15 lines
250 B
Go
15 lines
250 B
Go
package user
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// Command exports the user command set.
|
|
var Command = cli.Command{
|
|
Name: "user",
|
|
Usage: "manage users",
|
|
Subcommands: []cli.Command{
|
|
userListCmd,
|
|
userInfoCmd,
|
|
userAddCmd,
|
|
userRemoveCmd,
|
|
},
|
|
}
|