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