11 lines
264 B
Python
11 lines
264 B
Python
|
|
from copy import deepcopy
|
||
|
|
|
||
|
|
|
||
|
|
class TranslationService:
|
||
|
|
def translate(self, payload: dict, config: dict | None = None) -> tuple[dict, str]:
|
||
|
|
translated = deepcopy(payload)
|
||
|
|
return translated, "bypassed"
|
||
|
|
|
||
|
|
|
||
|
|
translation_service = TranslationService()
|