srne-mqtt/srnemqtt/interfaces/__init__.py
2023-04-07 23:26:55 +02:00

7 lines
135 B
Python

# -*- coding: utf-8 -*-
from abc import ABCMeta
from io import RawIOBase
class BaseInterface(RawIOBase, metaclass=ABCMeta):
pass