13 lines
262 B
Go
13 lines
262 B
Go
|
// Copyright 2022 the Pinniped contributors. All Rights Reserved.
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
package v1alpha1
|
||
|
|
||
|
import (
|
||
|
"k8s.io/apimachinery/pkg/runtime"
|
||
|
)
|
||
|
|
||
|
func addDefaultingFuncs(scheme *runtime.Scheme) error {
|
||
|
return RegisterDefaults(scheme)
|
||
|
}
|