Files
coder/cli/projectupdate.go
Kyle Carberry 07fe5ced68 feat: Add "coder" CLI (#221)
* 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
2022-02-10 08:33:27 -06:00

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
},
}
}