fix(test): 补充 stubUsageLogRepo 缺失的 GetStatsWithFilters 方法

This commit is contained in:
shaw
2026-01-06 22:35:22 +08:00
parent 015974a27e
commit a3b81ef7bc

View File

@@ -1065,6 +1065,10 @@ func (r *stubUsageLogRepo) GetAccountUsageStats(ctx context.Context, accountID i
return nil, errors.New("not implemented")
}
func (r *stubUsageLogRepo) GetStatsWithFilters(ctx context.Context, filters usagestats.UsageLogFilters) (*usagestats.UsageStats, error) {
return nil, errors.New("not implemented")
}
type stubSettingRepo struct {
all map[string]string
}