Files
zaqar/marconi/queues/transport/wsgi/__init__.py
Flavio Percoco 9b6350afa5 Change Marconi's codebase structure
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
2013-09-17 14:49:24 +02:00

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