mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-09-19 18:34:28 +00:00
8 lines
129 B
Python
8 lines
129 B
Python
from .device import Device
|
|
|
|
|
|
def open_piico_device(driver_path) -> Device:
|
|
d = Device()
|
|
d.open(driver_path)
|
|
return d
|