mirror of
https://github.com/coder/coder.git
synced 2025-07-09 11:45:56 +00:00
13 lines
220 B
Go
13 lines
220 B
Go
package cli
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
func users() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Short: "Create, remove, and list users",
|
|
Use: "users",
|
|
}
|
|
cmd.AddCommand(userCreate(), userList())
|
|
return cmd
|
|
}
|