UPDATE
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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()
|
||||
Reference in New Issue
Block a user