Since we are going to be importing the project into OpenStack we need it to follow the same structure as the other projects under the Cinder umbrella.
46 lines
1.5 KiB
Python
46 lines
1.5 KiB
Python
# Copyright (c) 2018, Red Hat, Inc.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
from __future__ import absolute_import
|
|
import pkg_resources
|
|
|
|
from cinderlib import cinderlib
|
|
from cinderlib import objects
|
|
from cinderlib import serialization
|
|
from cinderlib import workarounds # noqa
|
|
|
|
try:
|
|
__version__ = pkg_resources.get_distribution('cinderlib').version
|
|
except pkg_resources.DistributionNotFound:
|
|
__version__ = '0.0.0'
|
|
|
|
DEFAULT_PROJECT_ID = objects.DEFAULT_PROJECT_ID
|
|
DEFAULT_USER_ID = objects.DEFAULT_USER_ID
|
|
Volume = objects.Volume
|
|
Snapshot = objects.Snapshot
|
|
Connection = objects.Connection
|
|
KeyValue = objects.KeyValue
|
|
|
|
load = serialization.load
|
|
json = serialization.json
|
|
jsons = serialization.jsons
|
|
dump = serialization.dump
|
|
dumps = serialization.dumps
|
|
|
|
setup = cinderlib.setup
|
|
Backend = cinderlib.Backend
|
|
|
|
get_connector_properties = objects.brick_connector.get_connector_properties
|
|
list_supported_drivers = cinderlib.Backend.list_supported_drivers
|