mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-12 02:22:56 +08:00
cc3c4462a0
* 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
13 lines
458 B
Python
13 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
|