- db/session.py: fix indentation (2→4 space), pool_size=0 (unlimited), remove "ned to look at this" typo - Remove glue.models from alembic env.py import list - Update shared __init__.py, menu_item.py docstring, calendar_impl.py, handlers/__init__.py to remove glue terminology - Remove federation_handlers.py tombstone file - Remove TODO comments (replace with explanatory comments) - Rewrite README.md to reflect current architecture - Update anchoring.py TODO to plain comment Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
403 B
Python
10 lines
403 B
Python
"""Shared event handlers."""
|
|
|
|
|
|
def register_shared_handlers():
|
|
"""Import handler modules to trigger registration. Call at app startup."""
|
|
import shared.events.handlers.container_handlers # noqa: F401
|
|
import shared.events.handlers.login_handlers # noqa: F401
|
|
import shared.events.handlers.order_handlers # noqa: F401
|
|
import shared.events.handlers.ap_delivery_handler # noqa: F401
|