This commit is contained in:
suyl
2021-05-25 14:46:45 +08:00
parent 7ea090ec1b
commit 3c3931e811
4 changed files with 105 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package qywxapi
import "testing"
func TestGetProviderToken(t *testing.T) {
result, err := api.GetProviderToken()
if err != nil {
t.Fatal(err.Error())
}
sugarLogger.Debug(result)
}