From a2f3d10beee4a1ab7d84fa12b74c804cbbd7ffc7 Mon Sep 17 00:00:00 2001 From: IanShaw027 <131567472+IanShaw027@users.noreply.github.com> Date: Thu, 1 Jan 2026 04:37:33 +0800 Subject: [PATCH] =?UTF-8?q?fix(lint):=20=E4=BD=BF=E7=94=A8=20any=20?= =?UTF-8?q?=E6=9B=BF=E4=BB=A3=20interface{}=20=E4=BB=A5=E7=AC=A6=E5=90=88?= =?UTF-8?q?=20gofmt=20=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/internal/repository/concurrency_cache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/internal/repository/concurrency_cache.go b/backend/internal/repository/concurrency_cache.go index d8d6989b..35296497 100644 --- a/backend/internal/repository/concurrency_cache.go +++ b/backend/internal/repository/concurrency_cache.go @@ -347,7 +347,7 @@ func (c *concurrencyCache) GetAccountsLoadBatch(ctx context.Context, accounts [] return map[int64]*service.AccountLoadInfo{}, nil } - args := []interface{}{c.slotTTLSeconds} + args := []any{c.slotTTLSeconds} for _, acc := range accounts { args = append(args, acc.ID, acc.MaxConcurrency) }