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
+4
View File
@@ -7,6 +7,8 @@ import { CategoryModule } from './category/category.module';
import { RestaurantModule } from './restaurant/restaurant.module';
import { ItemModule } from './item/item.module';
import { FileModule } from './file/file.module';
import { RedisModule } from './redis/redis.module';
import { CacheModule } from './cache/cache.module';
@Module({
imports: [
@@ -17,6 +19,8 @@ import { FileModule } from './file/file.module';
RestaurantModule,
ItemModule,
FileModule,
RedisModule,
CacheModule,
],
})
export class AppModule {}