# app/services/stripe_service.py """ Stripe payment integration service. DEPRECATED: This file is maintained for backward compatibility. Import from app.modules.billing.services instead: from app.modules.billing.services import stripe_service This file re-exports the service from its new location in the billing module. """ # Re-export from new location for backward compatibility from app.modules.billing.services.stripe_service import ( StripeService, stripe_service, ) __all__ = [ "StripeService", "stripe_service", ]