Add a module which can register all user created routes. User will creates routes like below: ``` javascript app.get("/", function (){}) app.delete("/", function (){}) ``` Now your module should register all of the above routes.
Add a module which can register all user created routes.
User will creates routes like below:
Now your module should register all of the above routes.