mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 12:02:16 +00:00
233e7ab58d
Co-authored-by: luoshuijs <luoshuijs@outlook.com> Co-authored-by: Karako <karakohear@gmail.com> Co-authored-by: xtaodada <xtao@xtaolink.cn>
7 lines
122 B
Python
7 lines
122 B
Python
from typing import Any, Dict
|
|
|
|
__all__ = ("POST_DATA", "JSON_DATA")
|
|
|
|
POST_DATA = Dict[str, Any]
|
|
JSON_DATA = Dict[str, Any]
|