mirror of
https://github.com/linux-do/new-api.git
synced 2025-09-18 00:16:37 +08: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
|
|
}
|