
This patch re-structures Marconi's codebase in a way that it'll be possible to add other services such as marconi-proxy and marconi-notification as standalone services within Marconi. Implements blueprint change-marconi-structure Change-Id: Id6061f04ec6e6959143fb0f5905bb8799fd86edd
12 lines
280 B
Python
12 lines
280 B
Python
"""Marconi Storage Drivers"""
|
|
|
|
from marconi.queues.storage import base
|
|
from marconi.queues.storage import exceptions # NOQA
|
|
|
|
|
|
# Hoist classes into package namespace
|
|
ClaimBase = base.ClaimBase
|
|
DriverBase = base.DriverBase
|
|
MessageBase = base.MessageBase
|
|
QueueBase = base.QueueBase
|