Fragment read API is now fully declarative — every handler is a defhandler s-expression dispatched through one shared auto_mount_fragment_handlers() function. Replaces 8 near-identical blueprint files (~35 lines each) with a single function call per service. Events Python handlers (container-cards, account-page) extracted to a standalone module. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
8 lines
380 B
Python
8 lines
380 B
Python
from .market.routes import register as register_market_bp
|
|
from .product.routes import register as register_product
|
|
from .all_markets.routes import register as register_all_markets
|
|
from .page_markets.routes import register as register_page_markets
|
|
from .page_admin.routes import register as register_page_admin
|
|
from .actions import register_actions
|
|
from .data import register_data
|