11 lines
197 B
JavaScript
11 lines
197 B
JavaScript
const express = require('express');
|
|
const router = express.Router();
|
|
|
|
//the routes
|
|
//TODO: import the routes here
|
|
|
|
//basic route management
|
|
//TODO: define the routes here
|
|
|
|
module.exports = router;
|