Initial commit

This commit is contained in:
2026-01-03 03:19:35 +03:00
parent 30bfe55c0c
commit 1a8027167c
@@ -4,7 +4,6 @@ import qrcode
def generate_qr_bytes(text: str) -> bytes:
"""Generate QR code as PNG bytes."""
img = qrcode.make(text)
with io.BytesIO() as buffer:
img.save(buffer)