b87df4a3e5
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>
9 lines
293 B
Python
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"]
|