mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2026-04-15 01:41:56 +00:00
Backport https://github.com/woodpecker-ci/woodpecker/pull/2706 onto release branch --------- Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
21 lines
335 B
Go
21 lines
335 B
Go
package user
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/cli/common"
|
|
)
|
|
|
|
// Command exports the user command set.
|
|
var Command = &cli.Command{
|
|
Name: "user",
|
|
Usage: "manage users",
|
|
Flags: common.GlobalFlags,
|
|
Subcommands: []*cli.Command{
|
|
userListCmd,
|
|
userInfoCmd,
|
|
userAddCmd,
|
|
userRemoveCmd,
|
|
},
|
|
}
|