1
0
mirror of https://github.com/thingsboard/thingsboard-gateway synced 2025-10-26 22:31:42 +08:00
Files
thingsboard-gateway/thingsboard_gateway/connectors/mqtt/mqtt_uplink_converter.py

12 lines
193 B
Python

import logging
from abc import ABC, abstractmethod
log = logging.getLogger("extension")
class MqttUplinkConverter(ABC):
@abstractmethod
def convert(self, topic, body):
pass