mirror of
https://github.com/PaiGramTeam/SIMNet.git
synced 2024-11-16 12:02:17 +00:00
27 lines
776 B
Python
27 lines
776 B
Python
from typing import Optional
|
|
|
|
from simnet.client.components.auth import AuthClient
|
|
from simnet.client.components.chronicle.zzz import ZZZBattleChronicleClient
|
|
from simnet.client.components.daily import DailyRewardClient
|
|
from simnet.client.components.lab import LabClient
|
|
from simnet.client.components.self_help.zzz import ZZZSelfHelpClient
|
|
from simnet.client.components.verify import VerifyClient
|
|
from simnet.client.components.wish.zzz import ZZZWishClient
|
|
from simnet.utils.enums import Game
|
|
|
|
__all__ = ("ZZZClient",)
|
|
|
|
|
|
class ZZZClient(
|
|
ZZZBattleChronicleClient,
|
|
ZZZWishClient,
|
|
ZZZSelfHelpClient,
|
|
DailyRewardClient,
|
|
AuthClient,
|
|
LabClient,
|
|
VerifyClient,
|
|
):
|
|
"""A simple http client for StarRail endpoints."""
|
|
|
|
game: Optional[Game] = Game.ZZZ
|