mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-18 03:05:28 +00:00
This PR intends to move the loader api to internal. Only the necessary methods which are needed for the api have been put into `pkg/loader.go`. Signed-off-by: Varsha Prasad Narsing <varshaprasad96@gmail.com>
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")
|
|
)
|