rag/internal/access/http_context.go

14 lines
178 B
Go
Raw Normal View History

2024-06-13 07:08:55 +00:00
package access
import (
"framework_v2/internal/providers"
2024-06-13 07:17:53 +00:00
"github.com/gin-gonic/gin"
2024-06-13 07:08:55 +00:00
)
type User providers.JwtIDToken
type Metadata struct {
2024-06-13 07:17:53 +00:00
Http *gin.Context
2024-06-13 07:08:55 +00:00
User User
}