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
|
2022-01-04 15:51:32 +08:00
|
|
|
ProjectOpenSourceURL = "github.com/zeromicro/go-zero"
|
2021-08-13 11:47:42 +08:00
|
|
|
// OsWindows represents os windows
|
2021-02-20 19:50:03 +08:00
|
|
|
OsWindows = "windows"
|
2021-08-13 11:47:42 +08:00
|
|
|
// OsMac represents os mac
|
2021-02-20 19:50:03 +08:00
|
|
|
OsMac = "darwin"
|
2021-08-13 11:47:42 +08:00
|
|
|
// OsLinux represents os linux
|
2021-02-20 19:50:03 +08:00
|
|
|
OsLinux = "linux"
|
2021-08-13 11:47:42 +08:00
|
|
|
// OsJs represents os js
|
|
|
|
OsJs = "js"
|
|
|
|
// OsIOS represents os ios
|
|
|
|
OsIOS = "ios"
|
2020-08-08 15:16:59 +08:00
|
|
|
)
|