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