Add POI feature and imporve the overall backend implementation

This commit is contained in:
Urtzi Alfaro
2025-11-12 15:34:10 +01:00
parent e8096cd979
commit 5783c7ed05
173 changed files with 16862 additions and 9078 deletions

View File

@@ -0,0 +1,16 @@
"""
Redis Client for POI Service
Provides access to shared Redis client for POI caching.
"""
from shared.redis_utils import get_redis_client as get_shared_redis_client
async def get_redis_client():
"""
Get Redis client for POI service.
Uses shared Redis infrastructure from shared utilities.
"""
return await get_shared_redis_client()