mirror of
https://github.com/coder/coder.git
synced 2025-07-08 11:39:50 +00:00
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
|
|
}
|