"""
Auth API routes.
================
Module 5, Story 5.03: FastAPI auth router package

Exposes all customer-facing authentication endpoints under /auth prefix.

VERIFICATION_STAMP
Story: 5.03
Verified By: parallel-builder
Verified At: 2026-02-25
Tests: 4/4
Coverage: 100%
"""

from api.auth.routes import auth_router

__all__ = ["auth_router"]
