13 lines
187 B
Go
13 lines
187 B
Go
package model
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
type AuthContext struct {
|
|
AccessToken string
|
|
RefreshToken string
|
|
AuthResponse *http.ResponseWriter
|
|
AuthRequest *http.Request
|
|
}
|