10 lines
284 B
TypeScript
10 lines
284 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ParamTableController } from './param-table.controller';
|
|
import { ParamTableService } from './param-table.service';
|
|
|
|
@Module({
|
|
controllers: [ParamTableController],
|
|
providers: [ParamTableService]
|
|
})
|
|
export class ParamTableModule {}
|