
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
14 lines
266 B
Python
14 lines
266 B
Python
"""Marconi Transport Drivers"""
|
|
|
|
from marconi.common import config
|
|
from marconi.queues.transport import base
|
|
|
|
OPTIONS = {
|
|
'auth_strategy': ""
|
|
}
|
|
|
|
CFG = config.project('marconi').from_options(**OPTIONS)
|
|
|
|
# Hoist into package namespace
|
|
DriverBase = base.DriverBase
|