
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
363 B
Python
12 lines
363 B
Python
"""WSGI Transport Driver"""
|
|
|
|
from marconi.queues.transport.wsgi import claims # NOQA
|
|
from marconi.queues.transport.wsgi import driver
|
|
from marconi.queues.transport.wsgi import messages # NOQA
|
|
from marconi.queues.transport.wsgi import queues # NOQA
|
|
from marconi.queues.transport.wsgi import stats # NOQA
|
|
|
|
|
|
# Hoist into package namespace
|
|
Driver = driver.Driver
|