epay.go 203 B

123456789101112
  1. package service
  2. import (
  3. "one-api/constant"
  4. )
  5. func GetCallbackAddress() string {
  6. if constant.CustomCallbackAddress == "" {
  7. return constant.ServerAddress
  8. }
  9. return constant.CustomCallbackAddress
  10. }