获取小程序码

This commit is contained in:
苏尹岚
2020-02-24 11:08:25 +08:00
parent 8a7a94368e
commit ee48805eee
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package weixinapi
import (
"testing"
)
func TestGetUnlimited(t *testing.T) {
result, err := api.GetUnlimited("a=1", "")
if err != nil {
t.Fatal(err.Error())
}
sugarLogger.Debug(result)
}