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