From 36165d28437ac350db61d301c032c0c661ee684b Mon Sep 17 00:00:00 2001 From: Donny Xia Date: Mon, 15 Jun 2020 14:22:31 -0700 Subject: [PATCH] Update GO plugin doc --- site/content/en/guides/plugins/_index.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/site/content/en/guides/plugins/_index.md b/site/content/en/guides/plugins/_index.md index 542ef62e5..c965aeb03 100644 --- a/site/content/en/guides/plugins/_index.md +++ b/site/content/en/guides/plugins/_index.md @@ -306,7 +306,6 @@ A Go plugin for kustomize looks like this: > package main > > import ( -> "sigs.k8s.io/kustomize/api/ifc" > "sigs.k8s.io/kustomize/api/resmap" > ... > ) @@ -316,8 +315,7 @@ A Go plugin for kustomize looks like this: > var KustomizePlugin plugin > > func (p *plugin) Config( -> ldr ifc.Loader, -> rf *resmap.Factory, +> h *resmap.PluginHelpers, > c []byte) error {...} > > func (p *plugin) Generate() (resmap.ResMap, error) {...}