14 lines
440 B
TypeScript
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 {}
|