diff --git a/kjvstudy_org/resource_data.py b/kjvstudy_org/resource_data.py new file mode 100644 index 0000000..eaad89e --- /dev/null +++ b/kjvstudy_org/resource_data.py @@ -0,0 +1,13 @@ +""" +Centralized data for theological resources. +This module provides data access for both listing and detail pages. +""" + +def get_data_for_route(route_name): + """ + Import and return the appropriate data getter based on route name. + This avoids duplicating large data structures across routes. + """ + # Import will happen dynamically based on route + # For now, return None - routes will inline data until refactored + return None