nest-project/src/auth/auth.module.ts

14 lines
440 B
TypeScript
Raw Normal View History

2023-02-16 01:18:55 +08:00
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 {}