mirror of
https://github.com/PaiGramTeam/SIMNet.git
synced 2024-11-16 03:55:28 +00:00
🎨 Add GenshinClient
inheriting from CalculatorClient
This commit is contained in:
parent
f5664c7de0
commit
27325f2791
@ -1,6 +1,7 @@
|
||||
from typing import Optional
|
||||
|
||||
from simnet.client.components.auth import AuthClient
|
||||
from simnet.client.components.calculator.genshin import CalculatorClient
|
||||
from simnet.client.components.chronicle.genshin import GenshinBattleChronicleClient
|
||||
from simnet.client.components.daily import DailyRewardClient
|
||||
from simnet.client.components.diary.genshin import GenshinDiaryClient
|
||||
@ -13,6 +14,7 @@ __all__ = ("GenshinClient",)
|
||||
|
||||
|
||||
class GenshinClient(
|
||||
CalculatorClient,
|
||||
GenshinBattleChronicleClient,
|
||||
GenshinWishClient,
|
||||
GenshinDiaryClient,
|
||||
|
@ -1,6 +1,7 @@
|
||||
from typing import Optional
|
||||
|
||||
from simnet.client.components.auth import AuthClient
|
||||
from simnet.client.components.calculator.genshin import CalculatorClient
|
||||
from simnet.client.components.chronicle.genshin import GenshinBattleChronicleClient
|
||||
from simnet.client.components.daily import DailyRewardClient
|
||||
from simnet.client.components.diary.genshin import GenshinDiaryClient
|
||||
@ -12,6 +13,7 @@ from simnet.utils.types import CookieTypes, HeaderTypes, TimeoutTypes
|
||||
|
||||
|
||||
class GenshinClient(
|
||||
CalculatorClient,
|
||||
GenshinBattleChronicleClient,
|
||||
GenshinWishClient,
|
||||
GenshinDiaryClient,
|
||||
|
Loading…
Reference in New Issue
Block a user