dw-sdk/url.go
timerzz 62b04c9599 feat init 初始化
TODO fiber v3 client proxy有bug,proxy不生效
2024-07-24 10:43:43 +08:00

14 lines
213 B
Go

package dw_sdk
const (
DEV_URL = "https://openapi-sandbox.dewu.com"
Online_URL = "https://openapi.dewu.com"
)
func GetUrl(env string) string {
if env == "online" {
return Online_URL
}
return DEV_URL
}