mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-02 14:46:31 +00: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,
|
||
|
},
|
||
|
}
|