epay.go 190 B

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