Concept Flow - First FastAPI application
Start FastAPI app
Define route with @app.get('/')
Client sends GET request to '/'
Route function runs
Return response (JSON)
Client receives JSON response
This flow shows how a FastAPI app starts, defines a route, handles a GET request, and returns a JSON response.