Copying over from WrenchBoradWeb to new repository

This commit is contained in:
2022-05-07 23:20:17 -04:00
commit 6543a2f6c7
18 changed files with 848 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
'use strict';
const controller = require('./controller');
module.exports = function(app) {
app.route('/about')
.get(controller.about);
app.route('/create')
.post(controller.postTransfer);
app.route('/status/:id')
.get(controller.getStatus);
};