feat: Implement menu item and category management with Redis caching for restaurant data.

This commit is contained in:
2025-12-11 09:54:52 +03:00
parent 5dc5cd87a8
commit 1bc01337fc
19 changed files with 467 additions and 29 deletions
+2 -1
View File
@@ -2,9 +2,10 @@ import { Module } from '@nestjs/common';
import { RestaurantService } from './restaurant.service';
import { RestaurantController } from './restaurant.controller';
import { PrismaModule } from 'src/prisma/prisma.module';
import { CacheModule } from 'src/cache/cache.module';
@Module({
imports: [PrismaModule],
imports: [PrismaModule, CacheModule],
providers: [RestaurantService],
controllers: [RestaurantController],
exports: [RestaurantService],