Files
AIRegulation-DocAnalysis/backend/app/domain/auth/__init__.py
T

11 lines
359 B
Python
Raw Normal View History

2026-06-05 18:00:31 +08:00
"""Auth domain: role definitions and token claim models.
The domain layer defines what a user identity looks like (UserClaims) and
what roles exist (UserRole). Infrastructure details (JWT, bcrypt, PostgreSQL)
live under infrastructure/auth and never leak into this package.
"""
from .models import UserClaims, UserRole
__all__ = ["UserClaims", "UserRole"]