initial commit

This commit is contained in:
StevanFreeborn
2022-05-27 17:02:10 -05:00
commit 74e6fde90c
20 changed files with 11218 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
'use strict';
const Translator = require('../components/translator.js');
module.exports = function (app) {
const translator = new Translator();
app.route('/api/translate').post((req, res) => {
});
};