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