srne-mqtt/srnemqtt/interfaces/__init__.py

8 lines
135 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
from abc import ABCMeta
from io import RawIOBase
2023-04-07 21:26:55 +00:00
class BaseInterface(RawIOBase, metaclass=ABCMeta):
pass