ref: backend

This commit is contained in:
Andrey
2023-12-07 22:56:11 +03:00
parent 07d23f6bec
commit 2d414c86b4
100 changed files with 459 additions and 95 deletions
@@ -1,9 +1,10 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.STATIC_PATH = exports.PROFILES_PATH = exports.BASE_PATH = void 0;
const path = require("path");
const BASE_PATH = __dirname;
exports.BASE_PATH = BASE_PATH;
const PROFILES_PATH = `${BASE_PATH}/profiles`;
const PROFILES_PATH = path.join(BASE_PATH, "profiles");
exports.PROFILES_PATH = PROFILES_PATH;
const STATIC_PATH = `${BASE_PATH}/static`;
const STATIC_PATH = path.join(BASE_PATH, "static");
exports.STATIC_PATH = STATIC_PATH;