__init__.py 272 Bytes
"""Translation backend registry."""

from .deepl import DeepLTranslationBackend
from .llm import LLMTranslationBackend
from .qwen_mt import QwenMTTranslationBackend

__all__ = [
    "DeepLTranslationBackend",
    "LLMTranslationBackend",
    "QwenMTTranslationBackend",
]