mirror of
https://github.com/coder/coder.git
synced 2026-09-23 05:43:53 +08: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
15 lines
141 B
Go
15 lines
141 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/coder/coder/cli"
|
|
)
|
|
|
|
func main() {
|
|
err := cli.Root().Execute()
|
|
if err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|