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(2781, "6373ff5c318c4057886a669b5c9b5301", "hiloApi")
t.Logf(token) }