Files
alfred/alfred/infrastructure/api/knaben/__init__.py
2025-12-24 07:50:09 +01:00

24 lines
463 B
Python

"""Knaben API client."""
from .client import KnabenClient
from .dto import TorrentResult
from .exceptions import (
KnabenAPIError,
KnabenConfigurationError,
KnabenError,
KnabenNotFoundError,
)
# Global Knaben client instance (singleton)
knaben_client = KnabenClient()
__all__ = [
"KnabenClient",
"TorrentResult",
"KnabenError",
"KnabenConfigurationError",
"KnabenAPIError",
"KnabenNotFoundError",
"knaben_client",
]