You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
341 B

package domain
import (
"recook/configs"
)
func GetName() string {
if configs.IsProductionEnv() {
return "https://jyyapi.reecook.cn"
} else {
return "https://testapi.zjycshop.com"
}
}
func GetCDN() string {
if configs.IsProductionEnv() {
return "https://jyycdn.reecook.cn"
} else {
return "http://testcdn.zjycshop.com"
}
}