mirror of
https://github.com/PaiGramTeam/SIMNet.git
synced 2024-11-25 23:51:12 +00:00
10 lines
341 B
Python
10 lines
341 B
Python
from simnet.client.account.auth import AuthClient
|
|
from simnet.client.chronicle.starrail import StarRailBattleChronicleClient
|
|
from simnet.client.wish.starrail import WishClient
|
|
|
|
__all__ = ("StarRailClient",)
|
|
|
|
|
|
class StarRailClient(StarRailBattleChronicleClient, WishClient, AuthClient):
|
|
"""A simple http client for StarRail endpoints."""
|