1
0
mirror of https://github.com/drone/drone-cli.git synced 2025-02-08 15:51:09 +01:00
drone-cli/drone/user/user.go
2019-01-17 09:20:16 -08:00

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,
},
}