go-zero/tools/goctl/vars/settings.go

19 lines
429 B
Go
Raw Normal View History

2020-07-29 17:11:41 +08:00
package vars
2020-08-08 15:16:59 +08:00
const (
2021-02-20 19:50:03 +08:00
// ProjectName the const value of zero
ProjectName = "zero"
2021-03-08 18:23:12 +08:00
// ProjectOpenSourceURL the github url of go-zero
2021-02-20 19:50:03 +08:00
ProjectOpenSourceURL = "github.com/tal-tech/go-zero"
// OsWindows represents os windows
2021-02-20 19:50:03 +08:00
OsWindows = "windows"
// OsMac represents os mac
2021-02-20 19:50:03 +08:00
OsMac = "darwin"
// OsLinux represents os linux
2021-02-20 19:50:03 +08:00
OsLinux = "linux"
// OsJs represents os js
OsJs = "js"
// OsIOS represents os ios
OsIOS = "ios"
2020-08-08 15:16:59 +08:00
)