Files
TransPyC/lib/Shell/Config.py
2026-07-18 19:25:40 +08:00

9 lines
197 B
Python

from __future__ import annotations
class Config:
"""配置类"""
def __init__(self) -> None:
self.debug: bool = False
self.mode: str = 'relaxed' # 'relaxed' 或 'strict'