mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-09 16:19:03 +08:00
7 lines
225 B
Python
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
|