2025-06-05 07:45:16 +00:00

11 lines
211 B
Python

from fastapi import APIRouter
router = APIRouter()
@router.get("/", tags=["Root"])
def root():
"""
Root API endpoint.
"""
return {"message": "Welcome to the General Communication Service API"}