2024-03-02 22:07:32 +08:00
|
|
|
package service
|
|
|
|
|
|
2024-04-18 17:52:18 +08:00
|
|
|
import (
|
|
|
|
|
"one-api/common"
|
|
|
|
|
"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-03-02 22:07:32 +08:00
|
|
|
return common.ServerAddress
|
|
|
|
|
}
|
2024-04-18 17:52:18 +08:00
|
|
|
return constant.CustomCallbackAddress
|
2024-03-02 22:07:32 +08:00
|
|
|
}
|