new-api/service/epay.go
2024-04-18 17:52:18 +08:00

14 lines
219 B
Go

package service
import (
"one-api/common"
"one-api/constant"
)
func GetCallbackAddress() string {
if constant.CustomCallbackAddress == "" {
return common.ServerAddress
}
return constant.CustomCallbackAddress
}