""" Data module - templates and static data for content generation. """ from app.data.content_templates import ( TIP_TEMPLATES, PRODUCT_TEMPLATES, SERVICE_TEMPLATES, ENGAGEMENT_TEMPLATES, THREAD_TEMPLATES, OPTIMAL_POSTING_TIMES, get_tip_template, get_product_template, get_service_template, get_engagement_template, get_optimal_times, ) __all__ = [ "TIP_TEMPLATES", "PRODUCT_TEMPLATES", "SERVICE_TEMPLATES", "ENGAGEMENT_TEMPLATES", "THREAD_TEMPLATES", "OPTIMAL_POSTING_TIMES", "get_tip_template", "get_product_template", "get_service_template", "get_engagement_template", "get_optimal_times", ]