7 lines
137 B
Python
7 lines
137 B
Python
from abc import ABC
|
|
from a_transceiver import ATransceiver
|
|
|
|
class ABackend(ABC):
|
|
def send(self, xcr: ATransceiver, data: bytes):
|
|
pass
|