File size: 514 Bytes
7b850b7
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Module } from '@nestjs/common';
import { UserController } from './user.controller';
import { UserService } from './user.service';
import { DatabaseModule } from '../database/database.module';
import { AuthService } from '../auth/auth.service';
import { JwtService } from '@nestjs/jwt';
@Module({
  imports: [DatabaseModule],
  controllers: [UserController],
  providers: [UserService, AuthService, JwtService],
  exports: [UserService, AuthService, JwtService],
})
export class UserModule {}