mirror of
https://github.com/coder/coder.git
synced 2026-06-04 13:38:21 +00:00
22e781eced
* chore: add /v2 to import module path go mod requires semantic versioning with versions greater than 1.x This was a mechanical update by running: ``` go install github.com/marwan-at-work/mod/cmd/mod@latest mod upgrade ``` Migrate generated files to import /v2 * Fix gen
13 lines
151 B
Go
13 lines
151 B
Go
package main
|
|
|
|
import (
|
|
_ "time/tzdata"
|
|
|
|
"github.com/coder/coder/v2/cli"
|
|
)
|
|
|
|
func main() {
|
|
var rootCmd cli.RootCmd
|
|
rootCmd.RunMain(rootCmd.AGPL())
|
|
}
|