Files
NmeaClient/a_backend.py
T
2026-03-29 15:37:18 +02:00

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