Initial project structure for Klangkiste
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
"""Base NFC reader interface."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Protocol
|
||||
|
||||
|
||||
class BaseNFC(Protocol):
|
||||
def read_tag(self) -> str | None:
|
||||
raise NotImplementedError
|
||||
Reference in New Issue
Block a user