perf(api): 提高并发请求限制并添加配置写入日志
构建上传工具 / build-tool (push) Successful in 1m40s

- 将并发请求限制从10提升到500
- 在配置写入时添加调试日志输出
This commit is contained in:
2026-04-28 15:03:13 +08:00
parent 199bd43b00
commit 7f0e4fe607
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -65,6 +65,7 @@ func (a *App) GetConfig() config.Config {
}
func (a *App) WriteConfig(key string, value any) {
fmt.Println("写入配置:", key, value)
config.WriteConfig(key, value)
}