Files
skyplot/transport.py
T
2026-05-17 17:00:48 +02:00

14 lines
416 B
Python

# ---------------------------------------------------------------------------
# Transport-Abstraktionen
# ---------------------------------------------------------------------------
class GnssTransport:
def read(self, n: int) -> bytes:
raise NotImplementedError
def write(self, data: bytes) -> None:
raise NotImplementedError
def close(self) -> None:
raise NotImplementedError