Files
NmeaClient/a_backend.py
T
2026-03-17 19:09:48 +01:00

7 lines
135 B
Python

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