aa22047a0f
Signed-off-by: Monis Khan <mok@vmware.com>
15 lines
407 B
Go
Generated
15 lines
407 B
Go
Generated
// Copyright 2021 the Pinniped contributors. All Rights Reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package validation
|
|
|
|
import (
|
|
"k8s.io/apimachinery/pkg/util/validation/field"
|
|
|
|
identityapi "go.pinniped.dev/generated/1.19/apis/concierge/identity"
|
|
)
|
|
|
|
func ValidateWhoAmIRequest(whoAmIRequest *identityapi.WhoAmIRequest) field.ErrorList {
|
|
return nil // add validation for spec here if we expand it
|
|
}
|