mirror of
https://github.com/coder/coder.git
synced 2026-06-05 05:58:20 +00:00
be974cf280
This allows for *extremely basic* user management.
12 lines
175 B
Go
12 lines
175 B
Go
package cli
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
func users() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "users",
|
|
}
|
|
cmd.AddCommand(userCreate(), userList())
|
|
return cmd
|
|
}
|