mirror of https://github.com/morpheus65535/bazarr
14 lines
458 B
Python
14 lines
458 B
Python
# Cork - Authentication module for the Bottle web framework
|
|
# Copyright (C) 2013 Federico Ceratto and others, see AUTHORS file.
|
|
# Released under LGPLv3+ license, see LICENSE.txt
|
|
|
|
"""
|
|
.. module:: backends
|
|
:synopsis: Backends API - used to make backends available for importing
|
|
"""
|
|
|
|
from .json_backend import JsonBackend
|
|
from .mongodb_backend import MongoDBBackend
|
|
from .sqlalchemy_backend import SqlAlchemyBackend
|
|
from .sqlite_backend import SQLiteBackend
|