mirror of
https://shylinux.com/x/icebergs
synced 2025-05-01 19:19:24 +08:00
15 lines
192 B
Go
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}
|
|
}
|