Files
ailine/backend/app/templates/__init__.py

10 lines
148 B
Python
Raw Permalink Normal View History

2026-05-09 01:51:18 +08:00
"""
模板目录 - 存放可编辑的输出模板
"""
from pathlib import Path
TEMPLATES_DIR = Path(__file__).parent
__all__ = ["TEMPLATES_DIR"]