multy-stub/server/routers/epja-2023-2/pen-plotter/paths.js

11 lines
423 B
JavaScript
Raw Normal View History

2023-11-25 11:56:14 +03:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.STATIC_PATH = exports.PROFILES_PATH = exports.BASE_PATH = void 0;
2023-12-07 22:56:11 +03:00
const path = require("path");
2023-11-25 11:56:14 +03:00
const BASE_PATH = __dirname;
exports.BASE_PATH = BASE_PATH;
2023-12-07 22:56:11 +03:00
const PROFILES_PATH = path.join(BASE_PATH, "profiles");
2023-11-25 11:56:14 +03:00
exports.PROFILES_PATH = PROFILES_PATH;
2023-12-07 22:56:11 +03:00
const STATIC_PATH = path.join(BASE_PATH, "static");
2023-11-25 11:56:14 +03:00
exports.STATIC_PATH = STATIC_PATH;