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 {}