Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@wilhg
wilhg / claims.go
Last active April 21, 2023 14:57
Hertz Auth0 JWT Middleware
package main
import (
"context"
"strings"
"github.com/cloudwego/hertz/pkg/common/hlog"
)
type Claims struct {
@wilhg
wilhg / shorten_int64.go
Last active September 21, 2021 11:24
Go - Shorten int64 as a String
import (
"encoding/base64"
"encoding/binary"
"strings"
)
package util
import (
"encoding/base64"