mirror of
https://github.com/vmware-tanzu/pinniped.git
synced 2025-12-23 14:25:50 +00:00
- k8s.io/apimachinery/pkg/apis/meta/v1 - k8s.io/api/core/v1 - github.com/coreos/go-oidc/v3/oidc - github.com/ory/fosite/handler/oauth2 - go.pinniped.dev/generated/latest/apis/concierge/authentication/v1alpha1
14 lines
436 B
Go
14 lines
436 B
Go
// Copyright 2020-2024 the Pinniped contributors. All Rights Reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Package authenticator contains helper code for dealing with *Authenticator CRDs.
|
|
package authenticator
|
|
|
|
// Closer is a type that can be closed idempotently.
|
|
//
|
|
// This type is slightly different from io.Closer, because io.Closer can return an error and is not
|
|
// necessarily idempotent.
|
|
type Closer interface {
|
|
Close()
|
|
}
|