"""GitHub integration services.

This package contains the service layer for GitHub integration:
- GitHubClient: API client for GitHub REST and GraphQL APIs
- GitHubSyncService: Service for syncing GitHub data to local database
"""

from integrations.github.services.client import GitHubClient
from integrations.github.services.sync import GitHubSyncService

__all__ = [
    "GitHubClient",
    "GitHubSyncService",
]
