# app/modules/billing/__init__.py """ Billing Module - Subscription and payment management. This module provides: - Subscription tier management - Vendor subscription CRUD - Billing history and invoices - Stripe integration Routes: - Admin: /api/v1/admin/subscriptions/* - Vendor: /api/v1/vendor/billing/* Menu Items: - Admin: subscription-tiers, subscriptions, billing-history - Vendor: billing, invoices """ from app.modules.billing.definition import billing_module __all__ = ["billing_module"]