feat: Add LeakPasswords config

This commit is contained in:
wangruidong
2025-05-06 18:20:34 +08:00
committed by 老广
parent 0bdbb6fd84
commit 089a5f50f4
15 changed files with 161 additions and 12 deletions

View File

@@ -9,3 +9,9 @@ class SettingsConfig(AppConfig):
def ready(self):
from . import signal_handlers # noqa
from . import tasks # noqa
from .models import init_sqlite_db, register_sqlite_connection
try:
init_sqlite_db()
register_sqlite_connection()
except Exception:
pass