From 04cedce9a1494d10718992339748f4586ee46a9b Mon Sep 17 00:00:00 2001 From: QTom Date: Mon, 9 Feb 2026 11:40:37 +0800 Subject: [PATCH] =?UTF-8?q?test:=20=E4=B8=BA=20stubAccountRepo=20=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=20ListCRSAccountIDs=20=E6=96=B9=E6=B3=95=E5=AE=9E?= =?UTF-8?q?=E7=8E=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/internal/server/api_contract_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/backend/internal/server/api_contract_test.go b/backend/internal/server/api_contract_test.go index 23db0fde..fa6806ae 100644 --- a/backend/internal/server/api_contract_test.go +++ b/backend/internal/server/api_contract_test.go @@ -1049,6 +1049,10 @@ func (s *stubAccountRepo) BulkUpdate(ctx context.Context, ids []int64, updates s return int64(len(ids)), nil } +func (s *stubAccountRepo) ListCRSAccountIDs(ctx context.Context) (map[string]int64, error) { + return nil, errors.New("not implemented") +} + type stubProxyRepo struct{} func (stubProxyRepo) Create(ctx context.Context, proxy *service.Proxy) error {