Add exceptions, models, schemas, services directories to modules: customers: - exceptions.py, models/, schemas/, services/ inventory: - exceptions.py, models/, schemas/, services/ messaging: - exceptions.py, models/, schemas/, services/ monitoring: - exceptions.py, models/, schemas/, services/ orders: - exceptions.py, models/, schemas/, services/ payments: - Updated __init__.py All modules now have the standard self-contained directory structure ready for future migration of business logic. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
# app/modules/payments/__init__.py
|
|
"""
|
|
Payments Module - Payment gateway integrations.
|
|
|
|
This module provides low-level payment gateway abstractions:
|
|
- Gateway integrations (Stripe, PayPal, Bank Transfer, etc.)
|
|
- Payment processing and refunds
|
|
- Payment method storage and management
|
|
- Transaction records
|
|
|
|
This module is used by:
|
|
- billing: Platform subscriptions and vendor invoices
|
|
- orders: Customer checkout and order payments
|
|
|
|
Routes:
|
|
- Admin: /api/v1/admin/payments/*
|
|
- Vendor: /api/v1/vendor/payments/*
|
|
|
|
Menu Items:
|
|
- Admin: payments (payment configuration)
|
|
- Vendor: payment-methods (stored payment methods)
|
|
"""
|
|
|
|
# Lazy imports to avoid circular dependencies
|
|
|
|
__all__ = ["payments_module", "get_payments_module"]
|
|
|
|
|
|
def get_payments_module():
|
|
"""Lazy getter to avoid circular imports."""
|
|
from app.modules.payments.definition import payments_module
|
|
return payments_module
|
|
|
|
|
|
def __getattr__(name: str):
|
|
"""Lazy import to avoid circular dependencies."""
|
|
if name == "payments_module":
|
|
from app.modules.payments.definition import payments_module
|
|
return payments_module
|
|
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|