feat: Add Web iface with QR codes

This commit is contained in:
Piotr Gaczkowski 2026-03-24 14:27:32 +01:00
parent eccb167461
commit 6fdb8433ce
10 changed files with 1293 additions and 739 deletions

View file

@ -8,6 +8,10 @@ class Renderer(abc.ABC):
def render_label(self, label_definition: LabelDefinition) -> Image:
pass
@abc.abstractmethod
def render_qrcode(self, label_definition: LabelDefinition) -> Image:
pass
class Printer(abc.ABC):
@abc.abstractmethod