feat: Add users create and list commands (#1111)

This allows for *extremely basic* user management.
This commit is contained in:
Kyle Carberry
2022-04-24 20:08:26 -05:00
committed by GitHub
parent 7496c3da81
commit be974cf280
21 changed files with 245 additions and 127 deletions

View File

@ -6,5 +6,6 @@ func users() *cobra.Command {
cmd := &cobra.Command{
Use: "users",
}
cmd.AddCommand(userCreate(), userList())
return cmd
}