You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
330 B

import importlib.util
import platform
if importlib.util.find_spec('pyodideProxy'):
pass
elif platform.system() == 'Linux':
from .terminalhelper import *
elif platform.system() == 'Darwin':
from .terminalhelper import *
elif platform.system() == 'Windows':
pass
from .terminal import *
from .terminalview import *