Files
SensorHub/ingest/services.py
T

11 lines
264 B
Python
Raw Normal View History

2026-03-25 01:54:43 +03:30
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()