mirror of https://github.com/jumpserver/jumpserver
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
|