1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-09 17:29:04 +08:00
AzurLaneAutoScript/module/device/platform/__init__.py

7 lines
225 B
Python
Raw Permalink Normal View History

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