auth.module.ts 241 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import { Module } from '@nestjs/common'; import { AuthService } from './auth.service'; import { AuthController } from './auth.controller'; @Module({ controllers: [AuthController], providers: [AuthService], }) export class AuthModule {}