mirror of
https://github.com/drone/drone-cli.git
synced 2026-01-17 16:31:34 +01:00
16 lines
250 B
Go
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,
|
|
},
|
|
}
|