SIMNet/simnet/client/genshin.py
2023-05-05 12:06:43 +08:00

10 lines
323 B
Python

from simnet.client.account.auth import AuthClient
from simnet.client.chronicle.genshin import GenshinChronicleClient
from simnet.client.wish.genshin import WishClient
__all__ = ("GenshinClient",)
class GenshinClient(GenshinChronicleClient, WishClient, AuthClient):
"""A simple http client for StarRail endpoints."""