mirror of
https://forgejo.altau.su/lego/lego-monitoring.git
synced 2026-03-10 12:45:19 +00:00
6 lines
209 B
Python
6 lines
209 B
Python
import os
|
|
import tempfile
|
|
from pathlib import Path
|
|
|
|
CONFIG_FILE = (Path(os.path.dirname(os.path.realpath(__file__))) / ".." / "config.json").resolve()
|
|
TMP_DIR = Path(tempfile.gettempdir()) / "lego-monitoring"
|