import { Module } from '@nestjs/common'; import { TypeOrmModule } from '@nestjs/typeorm'; import { MapsController } from './maps.controller'; import { MapsService } from './maps.service'; import { MapLibrary } from '../../entities/map-library.entity'; import { MapRotation } from '../../entities/map-rotation.entity'; @Module({ imports: [TypeOrmModule.forFeature([MapLibrary, MapRotation])], controllers: [MapsController], providers: [MapsService], exports: [MapsService], }) export class MapsModule {}