mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-28 07:51:02 +00:00
13 lines
393 B
TypeScript
13 lines
393 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { VerifaydaController } from './verifayda.controller';
|
|
import { VerifaydaService } from './verifayda.service';
|
|
import { PrismaModule } from '../../common/prisma.module';
|
|
|
|
@Module({
|
|
imports: [PrismaModule],
|
|
controllers: [VerifaydaController],
|
|
providers: [VerifaydaService],
|
|
exports: [VerifaydaService],
|
|
})
|
|
export class VerifaydaModule {}
|