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
15 lines
302 B
Go
15 lines
302 B
Go
package cli
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
func projectUpdate() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "update <name>",
|
|
Args: cobra.MinimumNArgs(1),
|
|
Short: "Update a project from the current directory",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return nil
|
|
},
|
|
}
|
|
}
|