mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-19 03:42:23 -06:00
8 lines
279 B
TypeScript
8 lines
279 B
TypeScript
import { join } from 'path';
|
|
|
|
export const ROOT_DIR = process.cwd();
|
|
export const INSTANCE_DIR = join(ROOT_DIR, 'instances');
|
|
export const SRC_DIR = join(ROOT_DIR, 'src');
|
|
export const AUTH_DIR = join(ROOT_DIR, 'store', 'auth');
|
|
export const STORE_DIR = join(ROOT_DIR, 'store');
|