PaiGram/modules/apihelper/typedefs.py
2022-12-10 20:37:43 +08:00

7 lines
122 B
Python

from typing import Dict, Any
__all__ = ("POST_DATA", "JSON_DATA")
POST_DATA = Dict[str, Any]
JSON_DATA = Dict[str, Any]