Files
Hartmut b87df4a3e5 refactor(B1): migrate to domain-driven project structure
Move all models/schemas/services/routers into app/domains/.
Keep backward-compat shims in old locations for imports.
Preserves domains/rendering/tasks.py from Phase A.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-06 16:24:11 +01:00

9 lines
293 B
Python

# Compat shim — use app.domains.billing.service instead
from app.domains.billing.service import (
get_price_for,
resolve_line_price,
estimate_order_price,
refresh_order_price,
)
__all__ = ["get_price_for", "resolve_line_price", "estimate_order_price", "refresh_order_price"]