"""Translation backend registry.""" from .deepl import DeepLTranslationBackend from .llm import LLMTranslationBackend from .qwen_mt import QwenMTTranslationBackend __all__ = [ "DeepLTranslationBackend", "LLMTranslationBackend", "QwenMTTranslationBackend", ]