feat: add reference data loading and filter state callbacks (Task 3.1)

This commit is contained in:
Andrew Charlwood
2026-02-06 13:29:30 +00:00
parent d896c63dc5
commit eda35c7168
4 changed files with 93 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
"""Callback registration — imports all callback modules and wires them to the app."""
def register_callbacks(app):
"""Register all Dash callbacks with the app instance."""
from dash_app.callbacks.filters import register_filter_callbacks
register_filter_callbacks(app)