"""LinkedIn background tasks.

This module provides the public API for LinkedIn sync tasks.
The actual task implementations are currently in integrations/tasks.py
and will be migrated here in a future refactoring.

Tasks:
    - sync_linkedin_page: Sync notifications for a single LinkedIn page
    - sync_all_linkedin_pages: Sync all active LinkedIn pages due for sync
"""

# Re-export tasks from the main tasks module for backward compatibility
# These will be moved here in a future migration
from integrations.tasks import (
    sync_all_linkedin_pages,
    sync_linkedin_page,
)

__all__ = [
    "sync_linkedin_page",
    "sync_all_linkedin_pages",
]
