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