This commit is contained in:
2025-12-09 23:40:44 +03:30
parent 07f3006aef
commit 33b250287c
14 changed files with 386 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
import { Module } from '@nestjs/common';
import { PagerService } from './pager.service';
import { PagerController } from './pager.controller';
import { MikroOrmModule } from '@mikro-orm/nestjs';
import { Pager } from './entities/pager.entity';
import { JwtModule } from '@nestjs/jwt';
import { RolesModule } from '../roles/roles.module';
@Module({
imports: [MikroOrmModule.forFeature([Pager]), JwtModule, RolesModule],
controllers: [PagerController],
providers: [PagerService],
})
export class PagerModule {}