You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
313 B
Go
15 lines
313 B
Go
package vars
|
|
|
|
const (
|
|
// 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"
|
|
)
|