This repository has been archived on 2026-02-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cart/bp/__init__.py
giles 347ce53363
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 39s
fix: add register_order to bp/__init__.py (needed by orders)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-10 00:34:48 +00:00

5 lines
214 B
Python

from .cart.routes import register as register_cart_bp
from .cart.api import register as register_cart_api
from .order.routes import register as register_order
from .orders.routes import register as register_orders