mirror of
https://github.com/coder/coder.git
synced 2025-07-08 11:39:50 +00:00
This changes all "coder workspace *" commands to root. A few of these were already at the root, like SSH. The inconsistency made for a confusing experience.
13 lines
198 B
Go
13 lines
198 B
Go
package cli
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
func tunnel() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "tunnel",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return nil
|
|
},
|
|
}
|
|
}
|