Files
NmeaClient/a_backend.py
T
2026-03-23 15:42:24 +01:00

7 lines
129 B
Python

from abc import ABC
from msg_container import MsgContainer
class ABackend(ABC):
def send(self, name: str, data: bytes):
pass