woodpecker/cli/user/user.go

21 lines
339 B
Go
Raw Normal View History

package user
import (
"github.com/urfave/cli/v2"
"github.com/woodpecker-ci/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,
},
}