from fastapi import APIRouter router = APIRouter() @router.get("/", summary="Main API") async def root(): return {"message": "Witaj w API v12"}