(
config map[string]interface{},
identityUri url.URL,
operationId string,
insecure bool,
debug bool,
request AuthenticatorRequest,
logger log.Logger,
)
| 18 | } |
| 19 | |
| 20 | func NewAuthenticatorContext( |
| 21 | config map[string]interface{}, |
| 22 | identityUri url.URL, |
| 23 | operationId string, |
| 24 | insecure bool, |
| 25 | debug bool, |
| 26 | request AuthenticatorRequest, |
| 27 | logger log.Logger, |
| 28 | ) *AuthenticatorContext { |
| 29 | return &AuthenticatorContext{ |
| 30 | config, |
| 31 | identityUri, |
| 32 | operationId, |
| 33 | insecure, |
| 34 | debug, |
| 35 | request, |
| 36 | logger, |
| 37 | } |
| 38 | } |
no outgoing calls