mirror of
https://github.com/PaiGramTeam/SIMNet.git
synced 2024-11-16 20:10:37 +00:00
10 lines
323 B
Python
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."""
|