package utils import ( "github.com/hilo-common/utils/jwt" "testing" "time" ) func TestTestCommon(t *testing.T) { t.Logf(time.Date(2022, time.November, 1, 0, 0, 0, 0, time.Local).String()) } func TestJwt(t *testing.T) { token, _ := jwt.GenerateToken(4522, "bd572e747832490189f1604742a09225", "hiloApi") t.Logf(token) }