Added libs

This commit is contained in:
Lucas
2026-01-25 13:55:46 +10:00
parent 575c682afc
commit f70af3c4ea
229 changed files with 26983 additions and 0 deletions

8
app/common/paths.py Normal file
View File

@@ -0,0 +1,8 @@
from pathlib import Path
# Root directory of the project
ROOT_DIR = Path(__file__).resolve().parents[3]
LOGS_DIR = ROOT_DIR / "logs"
LIBS_DIR = ROOT_DIR / "libs"
FILES_DIR = ROOT_DIR / "files"