mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-18 04:55:08 +00:00
14 lines
328 B
Go
14 lines
328 B
Go
// Copyright 2019 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package plugins
|
|
|
|
const (
|
|
// Used with Go plugins.
|
|
// TODO: delete this from API in favor of api/plugins/config
|
|
PluginSymbol = "KustomizePlugin"
|
|
|
|
// TODO: delete this from API in favor of api/plugins/config
|
|
BuiltinPluginPackage = "builtin"
|
|
)
|