2025-09-22 17:13:48 +05:30
|
|
|
import { forwardRef, Module } from '@nestjs/common';
|
2025-09-17 10:18:44 +05:30
|
|
|
import { ParamTableController } from './param-table.controller';
|
|
|
|
|
import { ParamTableService } from './param-table.service';
|
|
|
|
|
import { AuthModule } from 'src/auth/auth.module';
|
|
|
|
|
|
|
|
|
|
@Module({
|
2025-09-22 17:13:48 +05:30
|
|
|
imports: [forwardRef(() => AuthModule)],
|
2025-09-17 10:18:44 +05:30
|
|
|
controllers: [ParamTableController],
|
|
|
|
|
providers: [ParamTableService]
|
|
|
|
|
})
|
|
|
|
|
export class ParamTableModule { }
|