11 lines
335 B
Python
11 lines
335 B
Python
|
import os
|
||
|
import sys
|
||
|
|
||
|
# Fix up the import paths for the autogenerated files
|
||
|
sys.path.append(os.path.dirname(__file__) + '/proto')
|
||
|
|
||
|
from .sma import StorageManagementAgent # noqa
|
||
|
from .device import DeviceException # noqa
|
||
|
from .device import DeviceManager # noqa
|
||
|
from .device import NvmfTcpDeviceManager # noqa
|