10 lines
148 B
Python
10 lines
148 B
Python
"""
|
|
模板目录 - 存放可编辑的输出模板
|
|
"""
|
|
|
|
from pathlib import Path
|
|
|
|
TEMPLATES_DIR = Path(__file__).parent
|
|
|
|
__all__ = ["TEMPLATES_DIR"]
|