Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- 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
- }
|