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

13 lines
190 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}
}