import { Module } from '@nestjs/common'; import { InMemoryRacingPersistenceModule } from '../../persistence/inmemory/InMemoryRacingPersistenceModule'; import { ProtestsController } from './ProtestsController'; import { ProtestsService } from './ProtestsService'; import { ProtestsProviders } from './ProtestsProviders'; @Module({ imports: [InMemoryRacingPersistenceModule], providers: [ProtestsService, ...ProtestsProviders], controllers: [ProtestsController], }) export class ProtestsModule {}