nest-project/src/auth/auth.module.ts
2023-02-16 01:23:46 +08:00

14 lines
440 B
TypeScript

import { Module } from '@nestjs/common'
import { AuthService } from './auth.service'
import { AuthController } from './auth.controller'
import { UsersModule } from 'src/users/users.module'
import { PasswordService } from './password.service'
import { JwtService } from '@nestjs/jwt'
@Module({
controllers: [AuthController],
providers: [AuthService, PasswordService, JwtService],
imports: [UsersModule],
})
export class AuthModule {}