7 lines
186 B
Python
7 lines
186 B
Python
|
# config.py
|
||
|
import os
|
||
|
|
||
|
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
|
||
|
DATA_DIR = os.path.join(BASE_DIR, 'app/tables')
|
||
|
MONSTERS_JSON_PATH = os.path.join(DATA_DIR, 'monsters.json')
|