"""TAB Affiliates API client package.

Provides client for fetching racing data from the TAB Affiliates API.
Supports meetings, events (races), and race results for NZ racing.
"""

from packages.tab_client.client import (
    TABClient,
    TABClientError,
    TABRateLimitError,
    get_client,
)

__all__ = [
    "TABClient",
    "TABClientError",
    "TABRateLimitError",
    "get_client",
]
