mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 06:46:13 +00:00
d7219dbbe0
Placeholder for centralizing theological resource data to avoid duplication across listing and detail routes. This will be used when refactoring resource routes to share data. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
14 lines
447 B
Python
14 lines
447 B
Python
"""
|
|
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
|