import { Module } from '@nestjs/common' import { AuthService } from './auth.service' import { AuthController } from './auth.controller' import { PasswordService } from './password.service' import { JwtService } from '@nestjs/jwt' import { JwtStrategy } from './strategies/jwt.strategy' @Module({ controllers: [AuthController], providers: [AuthService, JwtService, JwtStrategy, PasswordService], }) export class AuthModule {}