feat: Introduce core application structure, configuration, monitoring, and team management features.

This commit is contained in:
2026-02-03 06:45:54 +08:00
parent 637753ddaa
commit b20399a00a
18 changed files with 961 additions and 631 deletions

View File

@@ -379,7 +379,8 @@ func fetchAccountID(token string) (string, error) {
proxy = cfg.GetProxy()
}
tlsClient, err := client.New(proxy)
resolvedProxy := database.Instance.ResolveProxy(proxy)
tlsClient, err := client.New(resolvedProxy)
if err != nil {
return "", fmt.Errorf("创建 TLS 客户端失败: %v", err)
}