mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-09 18:39:04 +08:00
7 lines
208 B
Python
7 lines
208 B
Python
import sys
|
|
|
|
if sys.platform == 'win32':
|
|
from module.device.platform.platform_windows import PlatformWindows as Platform
|
|
else:
|
|
from module.device.platform.platform_base import PlatformBase as Platform
|