jumpserver/apps/common/sdk/gm/piico/__init__.py

8 lines
129 B
Python
Raw Normal View History

2022-08-23 09:40:01 +00:00
from .device import Device
def open_piico_device(driver_path) -> Device:
d = Device()
d.open(driver_path)
return d