# app/modules/billing/routes/api/__init__.py """ Billing module API routes. Provides REST API endpoints for subscription and billing management: - Admin API: Subscription tier management, merchant subscriptions, billing history, features - Store API: Subscription status, tier comparison, invoices, features - Merchant API: Merchant billing portal (subscriptions, invoices, checkout) Each main router (admin.py, store.py) aggregates its related sub-routers internally. Merchant routes are auto-discovered from merchant.py. """ from app.modules.billing.routes.api.admin import router as admin_router from app.modules.billing.routes.api.store import router as store_router __all__ = ["admin_router", "store_router"]