Added Notifications Microservice API - Integrated notification system with MongoDB, RabbitMQ consumer, and automatic status change notifications for reports
This commit is contained in:
14
src/infrastructure/api/notifications/root.py
Normal file
14
src/infrastructure/api/notifications/root.py
Normal 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"
|
||||
}
|
||||
Reference in New Issue
Block a user