mirror of
https://github.com/thingsboard/thingsboard-gateway
synced 2025-10-26 22:31:42 +08:00
12 lines
193 B
Python
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
|