module creation
This commit is contained in:
20
adapters/racing/services/InMemoryRankingService.ts
Normal file
20
adapters/racing/services/InMemoryRankingService.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import type { IRankingService, DriverRanking } from '@gridpilot/racing/domain/services/IRankingService';
|
||||
import type { ILogger } from '@gridpilot/shared/logging/ILogger';
|
||||
|
||||
export class InMemoryRankingService implements IRankingService {
|
||||
constructor(private readonly logger: ILogger) {
|
||||
this.logger.info('InMemoryRankingService initialized.');
|
||||
}
|
||||
|
||||
getAllDriverRankings(): DriverRanking[] {
|
||||
this.logger.debug('[InMemoryRankingService] Getting all driver rankings.');
|
||||
|
||||
// Mock data for demonstration purposes
|
||||
const mockRankings: DriverRanking[] = [
|
||||
{ driverId: 'driver-1', rating: 2500, overallRank: 1 },
|
||||
{ driverId: 'driver-2', rating: 2400, overallRank: 2 },
|
||||
{ driverId: 'driver-3', rating: 2300, overallRank: 3 },
|
||||
];
|
||||
return mockRankings;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user