Concept Flow - Creating an Express Router
Import express
Create router with express.Router()
Define routes on router
Export router
Import router in main app
Use router with app.use()
Server listens for requests
This flow shows how to create a router, add routes, export it, then use it in the main app to handle requests.