Added Notifications Microservice API - Integrated notification system with MongoDB, RabbitMQ consumer, and automatic status change notifications for reports

This commit is contained in:
2026-05-03 21:51:41 -06:00
parent c72397c228
commit 325517a130
19 changed files with 1280 additions and 81 deletions

View File

@@ -0,0 +1,14 @@
"""Notifications API Root endpoint"""
from fastapi import APIRouter
router = APIRouter()
@router.get("/")
async def root():
"""Root endpoint for Notifications API"""
return {
"message": "Notificaciones API",
"version": "1.0.0",
"status": "running"
}