This repository has been archived on 2023-11-13. You can view files and clone it, but cannot push or open issues or pull requests.
imagini/graph/model/models_auth.go

14 lines
190 B
Go
Raw Normal View History

2021-02-03 03:55:35 +00:00
package model
import (
2021-02-04 10:16:13 +00:00
"net/http"
"github.com/lestrrat-go/jwx/jwt"
2021-02-03 03:55:35 +00:00
)
type AuthContext struct {
2021-02-04 10:16:13 +00:00
AccessToken *jwt.Token
AuthResponse *http.ResponseWriter
AuthRequest *http.Request
2021-02-03 03:55:35 +00:00
}