Concept Flow - Route decorator (@app.route)
Define function
Apply @app.route decorator
Register URL path with function
Start Flask server
Browser sends HTTP request to URL
Flask matches URL to function
Function runs and returns response
Response sent back to browser
This flow shows how a function is linked to a URL path using @app.route, so when a browser visits that URL, Flask runs the function and sends back the response.