Concept Flow - Path operations (GET, POST, PUT, DELETE)
Client sends HTTP request
FastAPI receives request
Match request method and path
GET
Run GET handler
Send response back to client
The server listens for HTTP requests, matches the method and path, runs the correct handler, and sends back a response.