Coverage for src / local_deep_research / web / auth / __init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.12.0, created at 2026-01-11 00:51 +0000

1""" 

2Authentication module for LDR with SQLCipher encryption. 

3Handles user login, registration, and session management. 

4""" 

5 

6from .decorators import current_user, login_required 

7from .routes import auth_bp 

8 

9__all__ = ["auth_bp", "current_user", "login_required"]