mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-08-07 17:24:39 +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
|