Files
SneakyScan/app/web/auth/__init__.py

10 lines
173 B
Python

"""
Authentication package for SneakyScanner.
Provides Flask-Login based authentication with single-user support.
"""
from web.auth.models import User
__all__ = ['User']