"""Content Flow Tracker - Today Module. This module provides content flow analysis for today's data only. It processes and returns aggregated article statistics by source and category for the current day. """ from ..utils import get_content_flow_data def process(): """Return Content Flow Tracker data for *today* only.""" return get_content_flow_data("today")