mirror of
https://github.com/drone/drone-cli.git
synced 2025-02-08 15:51:09 +01:00
18 lines
283 B
Go
18 lines
283 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,
|
|
userUpdateCmd,
|
|
userRemoveCmd,
|
|
userBlockCmd,
|
|
},
|
|
}
|