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