- Add AI code generation requirements to AGENTS.md - Add module-level docstrings to all 46 Python modules - Add detailed Google-style docstrings to all classes and functions - Remove all inline comments following self-documenting code principle - Include Args, Returns, Raises sections in function docstrings - Add Attributes and Examples sections to class docstrings
11 lines
349 B
Python
11 lines
349 B
Python
"""Authentication infrastructure package.
|
|
|
|
This module provides Keycloak authentication client and models
|
|
for token validation and user info retrieval.
|
|
"""
|
|
|
|
from app.infrastructure.auth.client import KeycloakAuthClient
|
|
from app.infrastructure.auth.models import KeycloakUser, TokenInfo
|
|
|
|
__all__ = ["KeycloakAuthClient", "KeycloakUser", "TokenInfo"]
|