PamGram/modules/apihelper/typedefs.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
122 B
Python
Raw Normal View History

2022-10-08 00:59:08 +00:00
from typing import Dict, Any
2022-12-10 12:37:43 +00:00
__all__ = ("POST_DATA", "JSON_DATA")
2022-10-08 00:59:08 +00:00
POST_DATA = Dict[str, Any]
JSON_DATA = Dict[str, Any]