Code optimized (#493)

This commit is contained in:
kingxt
2021-02-20 19:50:03 +08:00
committed by GitHub
parent 059027bc9d
commit f98c9246b2
28 changed files with 472 additions and 372 deletions

View File

@@ -1,9 +1,14 @@
package vars
const (
ProjectName = "zero"
ProjectOpenSourceUrl = "github.com/tal-tech/go-zero"
OsWindows = "windows"
OsMac = "darwin"
OsLinux = "linux"
// ProjectName the const value of zero
ProjectName = "zero"
// ProjectOpenSourceURL the githb url of go-zero
ProjectOpenSourceURL = "github.com/tal-tech/go-zero"
// OsWindows windows os
OsWindows = "windows"
// OsMac mac os
OsMac = "darwin"
// OsLinux linux os
OsLinux = "linux"
)