woodpecker/drone/user/user.go

16 lines
250 B
Go
Raw Normal View History

2017-04-29 17:03:45 +00:00
package user
2017-03-16 10:14:02 +00:00
import "github.com/urfave/cli"
2017-04-29 17:03:45 +00:00
// Command exports the user command set.
var Command = cli.Command{
Name: "user",
Usage: "manage users",
Subcommands: []cli.Command{
userListCmd,
userInfoCmd,
userAddCmd,
userRemoveCmd,
},
}