aboutsummaryrefslogtreecommitdiffstats
path: root/src/session/session.module.ts
blob: 1f25786e99f00596c9b766d9002e124cbd102e9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Module } from '@nestjs/common';
import { SessionController } from './controller/session.controller';
import { SessionService } from './service/session.service';
import { TypeOrmModule } from '@nestjs/typeorm';
import { Session } from './entity/session.entity';

@Module({
  imports: [TypeOrmModule.forFeature([Session])],
  controllers: [SessionController],
  providers: [SessionService],
  exports: [SessionService],
})
export class SessionModule {}