Concept Flow - Route handlers (GET, POST, PUT, DELETE)
Client sends HTTP request
NestJS Router receives request
Match route path and HTTP method
Call corresponding handler method
Handler processes data and returns response
Send HTTP response back to client
This flow shows how NestJS receives an HTTP request, matches it to a route handler by path and method, executes the handler, and sends back a response.