go-zero/tools/goctl/vars/settings.go
anqiansong dc43430812
optimize grpc generation env check (#900)
* optimize grpc generation env check

* optimize grpc generation env check

* format code

* fix postgresql data type convert error

Co-authored-by: anqiansong <anqiansong@xiaoheiban.cn>
2021-08-13 11:47:42 +08:00

19 lines
429 B
Go

package vars
const (
// ProjectName the const value of zero
ProjectName = "zero"
// ProjectOpenSourceURL the github url of go-zero
ProjectOpenSourceURL = "github.com/tal-tech/go-zero"
// OsWindows represents os windows
OsWindows = "windows"
// OsMac represents os mac
OsMac = "darwin"
// OsLinux represents os linux
OsLinux = "linux"
// OsJs represents os js
OsJs = "js"
// OsIOS represents os ios
OsIOS = "ios"
)