chore: Setup directory structure

Change-Id: Id5f24ac34cd370e2cacfe4f995b2c2e2658453be
This commit is contained in:
Kurt Griffiths 2013-02-26 11:35:00 -05:00 committed by Flaper Fesp
parent 70895bdb05
commit 96baf5cde3
8 changed files with 14 additions and 0 deletions

1
.gitignore vendored
View File

@ -10,6 +10,7 @@ venv
.venv
*.sublime-workspace
*.sqlite
.DS_Store
.testrepository
versioninfo
var/*

View File

@ -0,0 +1,3 @@
""" Code common to Marconi, including main application logic. """
from .kernel import Kernel # NOQA

View File

@ -0,0 +1 @@
""" Marconi Storage Drivers """

View File

@ -0,0 +1 @@
""" MongoDB Storage Driver for Marconi """

View File

@ -0,0 +1,5 @@
"""In-memory reference Storage Driver for Marconi.
Useful for automated testing and for prototyping storage driver concepts.
"""

View File

@ -0,0 +1 @@
""" Marconi Transport Modules """

View File

@ -0,0 +1 @@
""" WSGI Transport """

View File

@ -0,0 +1 @@
""" ZMQ Transport (Experimental) """