Spaces:
Runtime error
Runtime error
| import { Module } from '@nestjs/common'; | |
| import { CaptureController } from './capture.controller'; | |
| import { CaptureService } from './capture.service'; | |
| import { PrismaModule } from '../prisma/prisma.module'; | |
| import { OcrModule } from '../ocr/ocr.module'; | |
| import { ParserModule } from '../parser/parser.module'; | |
| ({ | |
| imports: [PrismaModule, OcrModule, ParserModule], | |
| controllers: [CaptureController], | |
| providers: [CaptureService], | |
| exports: [CaptureService], | |
| }) | |
| export class CaptureModule {} |