Files
klangkiste/box2/hardware/base_nfc.py
T
2026-01-13 19:44:02 +00:00

11 lines
197 B
Python

"""Base NFC reader interface."""
from __future__ import annotations
from typing import Protocol
class BaseNFC(Protocol):
def read_tag(self) -> str | None:
raise NotImplementedError