mirror of
https://github.com/fosrl/pangolin.git
synced 2025-05-13 05:40:38 +01:00
8 lines
251 B
TypeScript
8 lines
251 B
TypeScript
import path from "path";
|
|
import { fileURLToPath } from "url";
|
|
import { existsSync } from "fs";
|
|
|
|
export const __FILENAME = fileURLToPath(import.meta.url);
|
|
export const __DIRNAME = path.dirname(__FILENAME);
|
|
|
|
export const APP_PATH = path.join("config");
|