2024-07-05 13:58:00 +00:00
|
|
|
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
|
2024-09-25 15:14:21 +00:00
|
|
|
from simnet.client.components.diary.zzz import ZZZDiaryClient
|
2024-07-05 13:58:00 +00:00
|
|
|
from simnet.client.components.lab import LabClient
|
2024-07-06 05:13:17 +00:00
|
|
|
from simnet.client.components.self_help.zzz import ZZZSelfHelpClient
|
2024-07-05 13:58:00 +00:00
|
|
|
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,
|
2024-09-25 15:14:21 +00:00
|
|
|
ZZZDiaryClient,
|
2024-07-06 05:13:17 +00:00
|
|
|
ZZZSelfHelpClient,
|
2024-07-05 13:58:00 +00:00
|
|
|
DailyRewardClient,
|
|
|
|
AuthClient,
|
|
|
|
LabClient,
|
|
|
|
VerifyClient,
|
|
|
|
):
|
|
|
|
"""A simple http client for StarRail endpoints."""
|
|
|
|
|
|
|
|
game: Optional[Game] = Game.ZZZ
|