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>
This commit is contained in:
anqiansong
2021-08-13 11:47:42 +08:00
committed by GitHub
parent c6642bc2e6
commit dc43430812
4 changed files with 116 additions and 9 deletions

View File

@@ -5,10 +5,14 @@ const (
ProjectName = "zero"
// ProjectOpenSourceURL the github url of go-zero
ProjectOpenSourceURL = "github.com/tal-tech/go-zero"
// OsWindows windows os
// OsWindows represents os windows
OsWindows = "windows"
// OsMac mac os
// OsMac represents os mac
OsMac = "darwin"
// OsLinux linux os
// OsLinux represents os linux
OsLinux = "linux"
// OsJs represents os js
OsJs = "js"
// OsIOS represents os ios
OsIOS = "ios"
)