remedify-users-be/src/items/item.module.ts
2025-02-24 12:51:11 +05:30

13 lines
467 B
TypeScript

import { Module } from '@nestjs/common';
import { ItemService } from './item.service';
import { ItemCategoryService } from './item-category/item-category.service';
import { ItemController } from './item.controller';
import { ItemCategoryController } from './item-category/item-category.controller';
@Module({
imports: [],
providers: [ItemService, ItemCategoryService],
controllers: [ItemController, ItemCategoryController]
})
export class ItemsModule {}