6 lines
138 B
Python
6 lines
138 B
Python
import os
|
|
|
|
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
HELP_FILE = fr"{ROOT_DIR}\README.md"
|
|
LOG_FILE = fr"{ROOT_DIR}\debug.log"
|