SIMNet/simnet/client/genshin.py
2023-05-05 22:15:40 +08:00

15 lines
480 B
Python

from typing import Optional
from simnet.client.components.auth import AuthClient
from simnet.client.components.chronicle.genshin import GenshinBattleChronicleClient
from simnet.client.components.wish.genshin import GenshinWishClient
from simnet.utils.enum_ import Game
__all__ = ("GenshinClient",)
class GenshinClient(GenshinBattleChronicleClient, GenshinWishClient, AuthClient):
"""A simple http client for StarRail endpoints."""
game: Optional[Game] = Game.GENSHIN