| 3 | import type { StatsRepository } from './StatsRepository' |
| 4 | |
| 5 | export class ApiStatsRepository implements StatsRepository { |
| 6 | async getCollectionStats(collectionId: string, limit = 30): Promise<CollectionStats> { |
| 7 | return StatsService.getCollectionStatisticsEndpoint({ |
| 8 | collectionId, |
| 9 | limit, |
| 10 | }) |
| 11 | } |
| 12 | } |
nothing calls this directly
no outgoing calls
no test coverage detected