github.com/chanxuehong/wechat@v0.0.0-20230222024006-36f0325263cd/mp/qrcode/shorturl.go (about) 1 package qrcode 2 3 import ( 4 "github.com/chanxuehong/wechat/mp/base" 5 "github.com/chanxuehong/wechat/mp/core" 6 ) 7 8 // ShortURL 将一条长链接转成短链接. 9 func ShortURL(clt *core.Client, longURL string) (shortURL string, err error) { 10 return base.ShortURL(clt, longURL) 11 }