They were missed by the initial set of patches which introduced this header as a mandatory one across different types of files. Signed-off-by: Michal Berger <michal.berger@intel.com> Change-Id: I3f9b37d41298c843e1648e72fe8593768ccd37e0 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15423 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com>
22 lines
810 B
Python
22 lines
810 B
Python
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2022 Intel Corporation.
|
|
# All rights reserved.
|
|
|
|
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
|
|
from .device import VhostBlkDeviceManager # noqa
|
|
from .device import NvmfVfioDeviceManager # noqa
|
|
from .volume import CryptoEngine # noqa
|
|
from .volume import CryptoException # noqa
|
|
from .volume import set_crypto_engine # noqa
|
|
from .volume import get_crypto_engine # noqa
|
|
from .volume import register_crypto_engine # noqa
|