10 lines
257 B
Go
10 lines
257 B
Go
|
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
// Package oidc contains common OIDC functionality needed by Pinniped.
|
||
|
package oidc
|
||
|
|
||
|
const (
|
||
|
WellKnownURLPath = "/.well-known/openid-configuration"
|
||
|
)
|