bazarr/libs/cork/backends.py
halali cc3c4462a0 Login form #127
* Initial commit

* Fix cookies

* Continue work

* Login error msg

* Reimplement Basic auth

* Some improvements

* Reimplement Basic auth

* Some improvements

* Change validation key for cookies

* Some Changes

* Add client side control of password when changing username

* Some changes
2018-09-11 22:32:09 -04:00

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