module creation

This commit is contained in:
2025-12-15 21:44:06 +01:00
parent b834f88bbd
commit 7c7267da72
88 changed files with 12119 additions and 4241 deletions

View File

@@ -0,0 +1,18 @@
import { Provider } from '@nestjs/common';
import { RaceService } from './RaceService';
export const RaceProviders: Provider[] = [
RaceService,
// In a functional setup, other providers would be here, e.g.:
/*
{
provide: 'ILogger',
useClass: ConsoleLogger,
},
{
provide: 'IRaceRepository',
useClass: InMemoryRaceRepository,
},
// ... other providers
*/
];