from fastapi import APIRouter router = APIRouter() @router.get('/', tags=["root"]) def root(): return { "status": "running" }