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
340 B

package domain
import (
"recook/configs"
)
func GetName() string {
if configs.IsProductionEnv() {
return "https://mallapi.reecook.cn"
} else {
return "https://testapi.reecook.cn"
}
}
func GetCDN() string {
if configs.IsProductionEnv() {
return "https://mallcdn.reecook.cn"
} else {
return "https://testcdn.reecook.cn"
}
}