mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-16 05:59:28 +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
|