mirror of
https://github.com/PaiGramTeam/HonkaiStarRailWikiDataParser.git
synced 2024-11-16 14:31:24 +00:00
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]
|