"""Content Flow Tracker - Monthly Module. This module provides content flow analysis for the latest 30 days of data. It processes and returns aggregated article statistics by source and category for the past 30 days from the most recent article date. """ from ..utils import get_content_flow_data def process(): """Return Content Flow Tracker data for the *latest 30 days*.""" return get_content_flow_data("month")