Files
edr-platform/apps/edr-freight-api/src/modules/otp/otp.module.ts
2026-05-26 05:40:53 +03:00

33 lines
551 B
TypeScript

// otp.module.ts
import { Module } from "@nestjs/common";
import { TypeOrmModule } from "@nestjs/typeorm";
import { OtpVerification } from "./otp.entity";
import { OtpController } from "./otp.controller";
import { OtpService } from "./otp.service";
import { OtpRepository } from "./otp.repository";
@Module({
imports: [
TypeOrmModule.forFeature([
OtpVerification,
]),
],
controllers: [OtpController],
providers: [
OtpService,
OtpRepository,
],
exports: [
OtpRepository,
],
})
export class OtpModule {}