mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-23 11:48:07 -06:00
8 lines
315 B
Python
8 lines
315 B
Python
|
import platform
|
||
|
if platform.system() == 'Linux':
|
||
|
from linux import LinuxKeyboardHandler as GlobalKeyboardHandler
|
||
|
elif platform.system() == 'Windows':
|
||
|
from wx_handler import WXKeyboardHandler as GlobalKeyboardHandler
|
||
|
elif platform.system() == 'Darwin':
|
||
|
from osx import OSXKeyboardHandler as GlobalKeyboardHandler
|