Files
Mikayla Dobson 5da024ef05 init commit
2022-07-08 12:00:48 -05:00

14 lines
370 B
JavaScript

const router = require('express').Router();
/**
* The goal is to gather these bits of code that work on specific parts of the program,
* gather them together so they can be streamlined and funneled into the next highest
* section of the program.
*/
module.exports = (app) => {
app.use(require('./drivers'));
app.use(require('./users'));
return app;
}