Files
corrosion-admin-panel/backend-nest/src/modules/maps/maps.module.ts
Vantz Stockwell 2ad6a658ca
All checks were successful
Test Asgard Runner / test (push) Successful in 3s
fix: Add missing maps module and scope gitignore rules
maps/ gitignore rule was catching backend-nest/src/modules/maps/.
Scoped to /maps/ (root only) so runtime data is still ignored
but source code isn't.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-15 21:35:47 -05:00

15 lines
512 B
TypeScript

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 {}