This commit is contained in:
邹宗楠
2023-06-15 10:40:28 +08:00
parent 5e1a6d6dd9
commit 4a8c0ffa71
3 changed files with 75 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
package tao_vegetable
import (
"git.rosy.net.cn/baseapi/utils"
"git.rosy.net.cn/jx-callback/globals"
"testing"
)
func TestQueryToken(t *testing.T) {
code := ""
data, err := apiTao.GetStoreToken(code, "")
globals.SugarLogger.Debugf("data := %s", utils.Format4Output(data, false))
globals.SugarLogger.Debugf("err := %s", utils.Format4Output(err, false))
}