mirror of
https://github.com/Xevion/contest-assistant.git
synced 2025-12-06 07:14:36 -06:00
11 lines
259 B
Python
11 lines
259 B
Python
import logging
|
|
import os
|
|
|
|
# Path Constants
|
|
BASE_DIR = os.path.dirname(os.path.abspath(os.path.join(__file__, '..')))
|
|
TOKEN = os.path.join(BASE_DIR, 'token.dat')
|
|
DATABASE = os.path.join(BASE_DIR, 'database.db')
|
|
|
|
# Other constants
|
|
LOGGING_LEVEL = logging.DEBUG
|