This module sets up the main routing for the application using Express.js.
It defines the base API path and includes specific route handlers for different parts of the application.
- Source:
Members
(static) /api/
This route handles all requests to the base API path. The specific routes and logic are defined in the ./api module.
- Source:
(inner) /api/todo
This route handles all requests to the /api/todos path. The specific routes and logic are defined in the ./todo.router module.
- Source:
(inner) /api/user
This route handles all requests to the /api/user path. The specific routes and logic are defined in the ./user.router module.
- Source: