mirror of
https://github.com/coder/coder.git
synced 2025-07-12 00:14:10 +00:00
* feat: Add "coder" CLI * Add CLI test for login * Add "bin/coder" target to Makefile * Update promptui to fix race * Fix error scope * Don't run CLI tests on Windows * Fix requested changes
11 lines
133 B
Go
11 lines
133 B
Go
package cli
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
func users() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "users",
|
|
}
|
|
return cmd
|
|
}
|