mirror of
https://github.com/PaiGramTeam/PaiGram.git
synced 2024-11-16 12:51:35 +00:00
7 lines
122 B
Python
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]
|