kodelyx-backend / src /auth /auth.module.ts
kodelyx's picture
Deploy NestJS backend with Prisma SQLite support
bd9f61b
Raw
History Blame Contribute Delete
307 Bytes
import { Module } from '@nestjs/common';
import { AuthController } from './auth.controller';
import { AuthService } from './auth.service';
import { PrismaService } from '../prisma.service';
@Module({
controllers: [AuthController],
providers: [AuthService, PrismaService],
})
export class AuthModule {}