mirror of
https://github.com/login-securite/DonPAPI
synced 2025-04-16 20:17:49 +00:00
14 lines
375 B
Python
14 lines
375 B
Python
#!/usr/bin/env python
|
|
# -*- coding: UTF8 -*-
|
|
|
|
import sys
|
|
from .BaseProcess import *
|
|
if sys.platform=='win32':
|
|
from .WinProcess import WinProcess as Process
|
|
elif sys.platform=='darwin':
|
|
from .OSXProcess import OSXProcess as Process
|
|
elif 'sunos' in sys.platform:
|
|
from .SunProcess import SunProcess as Process
|
|
else:
|
|
from .LinProcess import LinProcess as Process
|