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

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