- send() uses bytes no Msg

This commit is contained in:
2026-03-23 15:42:24 +01:00
parent f24224623e
commit 4427995ed6
5 changed files with 41 additions and 5 deletions
+1 -1
View File
@@ -2,5 +2,5 @@ from abc import ABC
from msg_container import MsgContainer
class ABackend(ABC):
def send(self, name: str, msg: MsgContainer):
def send(self, name: str, data: bytes):
pass