Remove user-facing new-api naming; Docker/network/container names use heicode. Go imports updated; Dockerfiles and workflows ldflags fixed. Made-with: Cursor
14 lines
316 B
Go
14 lines
316 B
Go
package service
|
|
|
|
import (
|
|
"github.com/heicode/manager/setting/operation_setting"
|
|
"github.com/heicode/manager/setting/system_setting"
|
|
)
|
|
|
|
func GetCallbackAddress() string {
|
|
if operation_setting.CustomCallbackAddress == "" {
|
|
return system_setting.ServerAddress
|
|
}
|
|
return operation_setting.CustomCallbackAddress
|
|
}
|