添加 Typst 支持
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-01-18 12:25:17 +08:00
parent c44e29a907
commit 1eb7e62cfe
5 changed files with 122 additions and 0 deletions

View File

@ -5,6 +5,7 @@ FONTS_PATH = ASSETS_PATH / "fonts"
SRC_PATH = Path(__file__).resolve().parent.parent
DATA_PATH = SRC_PATH.parent / "data"
TMP_PATH = DATA_PATH / "tmp"
LOG_PATH = DATA_PATH / "logs"
CONFIG_PATH = DATA_PATH / "config"
@ -21,4 +22,5 @@ if not LOG_PATH.exists():
LOG_PATH.mkdir()
CONFIG_PATH.mkdir(exist_ok=True)
TMP_PATH.mkdir(exist_ok=True)