You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package service
-
- import (
- "github.com/QuantumNous/new-api/setting/operation_setting"
- "github.com/QuantumNous/new-api/setting/system_setting"
- )
-
- func GetCallbackAddress() string {
- if operation_setting.CustomCallbackAddress == "" {
- return system_setting.ServerAddress
- }
- return operation_setting.CustomCallbackAddress
- }
|