begin working on routes

This commit is contained in:
StevanFreeborn
2022-05-26 20:24:35 -05:00
parent 88f6dfde1f
commit 9357f7875b
2 changed files with 5 additions and 2 deletions
+5
View File
@@ -14,5 +14,10 @@ module.exports = function (app) {
app.route('/api/solve')
.post((req, res) => {
const puzzleString = req.body.puzzle;
console.log(puzzleString);
});
};