mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-26 05:03:09 +00:00
12 lines
250 B
Go
12 lines
250 B
Go
// Copyright 2022 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package loader
|
|
|
|
import "sigs.k8s.io/kustomize/kyaml/errors"
|
|
|
|
var (
|
|
ErrHTTP = errors.Errorf("HTTP Error")
|
|
ErrRtNotDir = errors.Errorf("must build at directory")
|
|
)
|