# app/modules/payments/routes/__init__.py """ Payments module routes. Re-exports routers from the api subdirectory for backwards compatibility. """ from app.modules.payments.routes.api.admin import admin_router from app.modules.payments.routes.api.vendor import vendor_router __all__ = ["admin_router", "vendor_router"]