mirror of
https://github.com/linux-do/new-api.git
synced 2025-09-17 07:56:38 +08:00
13 lines
203 B
Go
13 lines
203 B
Go
package service
|
|
|
|
import (
|
|
"one-api/constant"
|
|
)
|
|
|
|
func GetCallbackAddress() string {
|
|
if constant.CustomCallbackAddress == "" {
|
|
return constant.ServerAddress
|
|
}
|
|
return constant.CustomCallbackAddress
|
|
}
|