Files
gongzhiyong 1f21309597 refactor: rename manager codebase dir new-api → heicode, module github.com/heicode/manager
Remove user-facing new-api naming; Docker/network/container names use heicode.
Go imports updated; Dockerfiles and workflows ldflags fixed.

Made-with: Cursor
2026-05-01 01:47:23 +08:00

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
}