mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-15 04:49:26 +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
|