10 lines
305 B
Python
10 lines
305 B
Python
"""Canonical auth router now delegates to auth_v2 (JWT-based).
|
|
|
|
This preserves `api.auth` import path while using the v2 implementation.
|
|
"""
|
|
|
|
from .auth_v2 import router # re-export canonical router
|
|
|
|
# Hint to linters that the symbol is intentionally re-exported
|
|
__all__ = ["router"]
|
|
_UNUSED = (router,)
|