This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
barkshark-web/barkshark_web/passwords/__init__.py

11 lines
317 B
Python

PASSWORD_STORAGE = DotDict()
from .bitwarden import BitwardenStorage, BitwardenItem, BitwardenResult
from .gnome_keyring import GnomeKeyringStorage
from .sql import SqlStorage
PASSWORD_STORAGE['default'] = SqlStorage
PASSWORD_STORAGE['bitwarden'] = BitwardenStorage
PASSWORD_STORAGE['gnome'] = GnomeKeyringStorage