from abc import ABC class ABackend(ABC): def send(self, name: str, data: bytes): pass