Files
leonpan-pc/app/core/utils/setting.py
2025-10-29 22:20:21 +08:00

17 lines
358 B
Python

# coding: utf-8
from pathlib import Path
# change DEBUG to False if you want to compile the code to exe
DEBUG = "__compiled__" not in globals()
YEAR = 2025
AUTHOR = "Miao"
VERSION = "v0.0.1"
APP_NAME = "miaostarspan"
CONFIG_FOLDER = Path("config").absolute()
CONFIG_FILE = CONFIG_FOLDER / "config.json"
DOWNLOAD_FOLDER = Path("download").absolute()
# 23