implemented send

This commit is contained in:
2026-03-17 19:09:48 +01:00
parent 58f7c32747
commit eaec8d8691
3 changed files with 52 additions and 10 deletions
+4
View File
@@ -10,3 +10,7 @@ class Transceiver(MsgSource):
def on_recv(self, msg: MsgContainer):
self.call_sinks(msg)
def send(self, msg: MsgContainer):
self.backend.send(self.name, msg)