Start making

Start on the basic structure, database stuff
This commit is contained in:
Isaac
2021-02-16 00:02:44 +00:00
parent 828d4af22d
commit f44e9080e5
12 changed files with 617 additions and 559 deletions

5
src/utils/fs.js Normal file
View File

@@ -0,0 +1,5 @@
const { join } = require('path');
module.exports = {
path: path => join(__dirname, '../../', path),
};