15 lines
363 B
Go
15 lines
363 B
Go
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))
|
|
}
|