1# Cork - Authentication module for the Bottle web framework
2# Copyright (C) 2013 Federico Ceratto and others, see AUTHORS file.
3# Released under LGPLv3+ license, see LICENSE.txt
4
5"""
6.. module:: backends
7   :synopsis: Backends API - used to make backends available for importing
8"""
9
10from .json_backend import JsonBackend
11from .mongodb_backend import MongoDBBackend
12from .sqlalchemy_backend import SqlAlchemyBackend
13from .sqlite_backend import SQLiteBackend
14