1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-09 13:59:02 +08:00
AzurLaneAutoScript/module/device/platform/__init__.py
2024-07-12 01:05:58 +08:00

7 lines
225 B
Python

from module.device.env import IS_WINDOWS
if IS_WINDOWS:
from module.device.platform.platform_windows import PlatformWindows as Platform
else:
from module.device.platform.platform_base import PlatformBase as Platform