2024-03-02 22:07:32 +08:00
|
|
|
package service
|
|
|
|
|
|
2024-04-18 17:52:18 +08:00
|
|
|
import (
|
|
|
|
|
"one-api/constant"
|
|
|
|
|
)
|
2024-03-02 22:07:32 +08:00
|
|
|
|
|
|
|
|
func GetCallbackAddress() string {
|
2024-04-18 17:52:18 +08:00
|
|
|
if constant.CustomCallbackAddress == "" {
|
2024-05-28 17:59:53 +08:00
|
|
|
return constant.ServerAddress
|
2024-03-02 22:07:32 +08:00
|
|
|
}
|
2024-04-18 17:52:18 +08:00
|
|
|
return constant.CustomCallbackAddress
|
2024-03-02 22:07:32 +08:00
|
|
|
}
|