index.js 158 B

12345
  1. const noteRoutes = require('./note_routes');
  2. module.exports = function(app, db) {
  3. noteRoutes(app, db);
  4. // Other route groups could go here, in the future
  5. };