10 lines
173 B
Python
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']
|