SIMNet/simnet/__init__.py

6 lines
207 B
Python
Raw Normal View History

2023-05-08 03:13:56 +00:00
from simnet.client.genshin import GenshinClient
2023-05-01 12:50:48 +00:00
from simnet.client.starrail import StarRailClient
2023-12-27 07:09:24 +00:00
from simnet.utils.enums import Game, Region
2023-05-01 12:50:48 +00:00
__all__ = ("StarRailClient", "GenshinClient", "Game", "Region")