mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-19 01:47:02 +00:00
9 lines
184 B
Go
9 lines
184 B
Go
package schema
|
|
|
|
import "errors"
|
|
|
|
type noop struct{}
|
|
|
|
func (n noop) Get(kind string, version, kubernetesVersion string) (*Schema, error) {
|
|
return nil, errors.New("schema not found")
|
|
}
|