Files
new-api/service/epay.go

11 lines
190 B
Go
Raw Normal View History

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