15 lines
289 B
Python
15 lines
289 B
Python
"""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"
|
|
}
|