mirror of
https://github.com/PaiGramTeam/MibooGram.git
synced 2024-11-16 12:51:45 +00:00
8f424bf0d4
♻️ 重构插件系统 ⚙️ 重写插件 🎨 改进代码结构 📝 完善文档 Co-authored-by: zhxy-CN <admin@owo.cab> Co-authored-by: 洛水居室 <luoshuijs@outlook.com> Co-authored-by: xtaodada <xtao@xtaolink.cn> Co-authored-by: Li Chuangbo <im@chuangbo.li>
14 lines
356 B
Python
14 lines
356 B
Python
from pathlib import Path
|
|
from types import TracebackType
|
|
from typing import Tuple, Type, Union, Dict, Any
|
|
|
|
__all__ = [
|
|
'StrOrPath',
|
|
'ExceptionInfoType',
|
|
'JSONDict',
|
|
]
|
|
|
|
StrOrPath = Union[str, Path]
|
|
ExceptionInfoType = Union[bool, Tuple[Type[BaseException], BaseException, TracebackType, None], Tuple[None, None, None]]
|
|
JSONDict = Dict[str, Any]
|