Process Flow - REST API serving with FastAPI
Start FastAPI app
Receive HTTP request
Match request path & method
Call corresponding function
Process input data
Generate response data
Send HTTP response
Wait for next request
This flow shows how FastAPI starts, receives a request, matches it to a function, processes data, and sends back a response.