CherryKitten
70cee77a95
Currently contains the Unit Tests, which should already be done correctly. Functional tests still need to be added.
18 lines
284 B
JavaScript
18 lines
284 B
JavaScript
'use strict';
|
|
|
|
const SudokuSolver = require('../controllers/sudoku-solver.js');
|
|
|
|
module.exports = function (app) {
|
|
|
|
let solver = new SudokuSolver();
|
|
|
|
app.route('/api/check')
|
|
.post((req, res) => {
|
|
|
|
});
|
|
|
|
app.route('/api/solve')
|
|
.post((req, res) => {
|
|
|
|
});
|
|
};
|