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/opcua/opcua_converter.py

11 lines
186 B
Python

import logging
from abc import ABC, abstractmethod
log = logging.getLogger("extension")
class OpcUaConverter(ABC):
@abstractmethod
def convert(self, path, data):
pass