Concept Flow - Async path operations
Client sends HTTP request
FastAPI receives request
Match request path to async path operation
Call async function
Await async tasks inside function
Return response to client
This flow shows how FastAPI handles an HTTP request by matching it to an async path operation, running the async function, awaiting tasks, and sending back the response.