data-xexe/xexe/constants.py
2024-06-06 17:12:31 +02:00

10 lines
329 B
Python

import pathlib
from dataclasses import dataclass
@dataclass
class PATHS:
logging_file: pathlib.Path = pathlib.Path("xexe.log")
# Expand user is important. It will replace the user and give you the full
# path. Stuff breaks without it.
dot_env_file_path: pathlib.Path = pathlib.Path("~/.xexe/.env").expanduser()