Skip to content

Commit

Permalink
🐛 Add missing qr file
Browse files Browse the repository at this point in the history
  • Loading branch information
michprev committed Nov 28, 2024
1 parent 063362f commit d1da3a4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions wake/cli/qr.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import rich_click as click


@click.command(name="qr")
def run_qr() -> None:
import qrcode

qr = qrcode.QRCode()
qr.add_data("Some text")
qr.print_ascii()

0 comments on commit d1da3a4

Please sign in to comment.