1
0
mirror of https://shylinux.com/x/icebergs synced 2025-05-01 19:19:24 +08:00
icebergs/misc/qrcode/qrcode.go
2023-03-27 21:22:53 +08:00

15 lines
192 B
Go

package qrcode
import (
"shylinux.com/x/go-qrcode"
)
type QRCode struct {
*qrcode.QRCode
}
func New(text string) *QRCode {
qr, _ := qrcode.New(text, qrcode.Medium)
return &QRCode{qr}
}