1
0
mirror of https://github.com/drone/drone-cli.git synced 2026-02-01 15:53:34 +01:00
drone-cli/drone/user/user.go

18 lines
283 B
Go
Raw Normal View History

2017-05-15 13:59:26 +02:00
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,
2019-01-17 18:20:16 +01:00
userUpdateCmd,
2017-05-15 13:59:26 +02:00
userRemoveCmd,
2019-01-17 18:20:16 +01:00
userBlockCmd,
2017-05-15 13:59:26 +02:00
},
}