Version 0.1.0 - Ajout du serveur Express

This commit is contained in:
Raphix
2023-10-21 18:16:11 +02:00
parent f3ecace914
commit 99f0392a6c
11 changed files with 1915 additions and 0 deletions

11
bin/global-variables.js Normal file
View File

@ -0,0 +1,11 @@
const path = require("path");
const root = path.resolve(__dirname, '../')
const __glob = {
ROUTES: root + path.sep + "routes" + path.sep
};
module.exports = { __glob };