-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For #42 * Import all backends into backends __init__ to allow simpler imports
- Loading branch information
emmanuel valette
committed
Jan 2, 2017
1 parent
bff1a08
commit e4c2371
Showing
9 changed files
with
17 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from oct.backends.redis import RedisStore, RedisLoader | ||
from oct.backends.dummy import DummyStore, DummyLoader | ||
from oct.backends.sqlite import SQLiteStore, SQLiteLoader | ||
|
||
__all__ = [ | ||
'RedisStore', | ||
'RedisLoader', | ||
'DummyStore', | ||
'DummyLoader', | ||
'SQLiteStore', | ||
'SQLiteLoader' | ||
] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters