"""
Genesis Customer Auth — Supabase-backed authentication.
========================================================
Module 5: Customer Auth

Provides Supabase-backed authentication for ReceptionistAI customers.
Exposes SupabaseAuth client, FastAPI middleware, and tier-based access
control for the Genesis API layer.

VERIFICATION_STAMP
Story: 5.00
Verified By: parallel-builder
Verified At: 2026-02-25
Tests: 26/26
Coverage: 100%
"""

from core.auth.supabase_client import SupabaseAuth
from core.auth.middleware import require_auth, get_current_user

__all__ = ["SupabaseAuth", "require_auth", "get_current_user"]
