mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-04-18 10:47:27 +00:00
11 lines
190 B
Go
11 lines
190 B
Go
package service
|
|
|
|
import "one-api/common"
|
|
|
|
func GetCallbackAddress() string {
|
|
if common.CustomCallbackAddress == "" {
|
|
return common.ServerAddress
|
|
}
|
|
return common.CustomCallbackAddress
|
|
}
|