1
0
mirror of https://github.com/drone/drone-cli.git synced 2026-01-18 08:51:33 +01:00
drone-cli/drone/user/user.go
2017-05-15 13:59:26 +02:00

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