This repository has been archived on 2025-10-05. You can view files and clone it, but cannot push or open issues or pull requests.
Files
neutral/bin/global-variables.js
2023-10-21 18:16:11 +02:00

12 lines
178 B
JavaScript

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