chore: Setup directory structure
Change-Id: Id5f24ac34cd370e2cacfe4f995b2c2e2658453be
This commit is contained in:
parent
70895bdb05
commit
96baf5cde3
1
.gitignore
vendored
1
.gitignore
vendored
@ -10,6 +10,7 @@ venv
|
||||
.venv
|
||||
*.sublime-workspace
|
||||
*.sqlite
|
||||
.DS_Store
|
||||
.testrepository
|
||||
versioninfo
|
||||
var/*
|
||||
|
3
marconi/common/__init__.py
Normal file
3
marconi/common/__init__.py
Normal file
@ -0,0 +1,3 @@
|
||||
""" Code common to Marconi, including main application logic. """
|
||||
|
||||
from .kernel import Kernel # NOQA
|
1
marconi/storage/__init__.py
Normal file
1
marconi/storage/__init__.py
Normal file
@ -0,0 +1 @@
|
||||
""" Marconi Storage Drivers """
|
1
marconi/storage/mongodb/__init__.py
Normal file
1
marconi/storage/mongodb/__init__.py
Normal file
@ -0,0 +1 @@
|
||||
""" MongoDB Storage Driver for Marconi """
|
5
marconi/storage/reference/__init__.py
Normal file
5
marconi/storage/reference/__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
"""In-memory reference Storage Driver for Marconi.
|
||||
|
||||
Useful for automated testing and for prototyping storage driver concepts.
|
||||
|
||||
"""
|
1
marconi/transport/__init__.py
Normal file
1
marconi/transport/__init__.py
Normal file
@ -0,0 +1 @@
|
||||
""" Marconi Transport Modules """
|
1
marconi/transport/wsgi/__init__.py
Normal file
1
marconi/transport/wsgi/__init__.py
Normal file
@ -0,0 +1 @@
|
||||
""" WSGI Transport """
|
1
marconi/transport/zmq/__init__.py
Normal file
1
marconi/transport/zmq/__init__.py
Normal file
@ -0,0 +1 @@
|
||||
""" ZMQ Transport (Experimental) """
|
Loading…
Reference in New Issue
Block a user