๐Ÿ“ฆ Kimsoo0119 / map_finder_backend

๐Ÿ“„ report.module.ts ยท 10 lines
1
2
3
4
5
6
7
8
9
10import { Module } from '@nestjs/common';
import { ReportService } from './report.service';
import { ReportController } from './report.controller';

@Module({
  providers: [ReportService],
  controllers: [ReportController]
})
export class ReportModule {}