Spaces:
Sleeping
Sleeping
| import { Module } from '@nestjs/common'; | |
| import { AuthController } from './auth.controller'; | |
| import { AuthService } from './auth.service'; | |
| import { PrismaService } from '../prisma.service'; | |
| ({ | |
| controllers: [AuthController], | |
| providers: [AuthService, PrismaService], | |
| }) | |
| export class AuthModule {} | |