munch-ease-backend/api/auth.py

11 lines
305 B
Python
Raw Normal View History

"""Canonical auth router now delegates to auth_v2 (JWT-based).
2025-10-18 05:50:43 +00:00
This preserves `api.auth` import path while using the v2 implementation.
"""
2025-10-18 05:50:43 +00:00
from .auth_v2 import router # re-export canonical router
2025-10-18 05:50:43 +00:00
# Hint to linters that the symbol is intentionally re-exported
__all__ = ["router"]
_UNUSED = (router,)