refactored

This commit is contained in:
2026-03-29 15:37:18 +02:00
parent f7b1b18b2f
commit 670c4db7a4
9 changed files with 46 additions and 28 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
from abc import ABC
from a_transceiver import ATransceiver
class ABackend(ABC):
def send(self, name: str, data: bytes):
def send(self, xcr: ATransceiver, data: bytes):
pass