zhenxun_plugin_farm/config.py

17 lines
416 B
Python
Raw Normal View History

2025-03-16 19:11:05 +08:00
from pathlib import Path
from zhenxun.configs.path_config import DATA_PATH
2025-03-16 19:11:05 +08:00
g_bIsDebug = True
2025-03-16 19:11:05 +08:00
g_sDBPath = DATA_PATH / "farm_db"
g_sDBFilePath = DATA_PATH / "farm_db/farm.db"
g_sResourcePath = Path(__file__).resolve().parent / "resource"
g_sPlantPath = g_sResourcePath / "db/plant.db"
g_sConfigPath = Path(__file__).resolve().parent / "config"
g_sSignInPath = g_sConfigPath / "sign_in.json"
g_bSignStatus = True