settings.go 430 B

123456789101112131415161718
  1. package vars
  2. const (
  3. // ProjectName the const value of zero
  4. ProjectName = "zero"
  5. // ProjectOpenSourceURL the github url of go-zero
  6. ProjectOpenSourceURL = "github.com/zeromicro/go-zero"
  7. // OsWindows represents os windows
  8. OsWindows = "windows"
  9. // OsMac represents os mac
  10. OsMac = "darwin"
  11. // OsLinux represents os linux
  12. OsLinux = "linux"
  13. // OsJs represents os js
  14. OsJs = "js"
  15. // OsIOS represents os ios
  16. OsIOS = "ios"
  17. )