package logic import ( "fmt" "testing" ) func TestCreateJWT(t *testing.T) { l := new(LoginByWeixinLogic) fmt.Println(l.CreateJWT(1624415746, l.svcCtx.Config.JwtAuth.AccessSecret, nil, 1000)) }