From 9d66eb16c89e3cbd023f1e08b999fb076e023706 Mon Sep 17 00:00:00 2001 From: Colin O'Dell Date: Fri, 23 Feb 2024 11:14:16 -0500 Subject: [PATCH] Add import statements to help users get up-and-running faster --- kyaml/fn/framework/doc.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/kyaml/fn/framework/doc.go b/kyaml/fn/framework/doc.go index e5f638e05..80798500b 100644 --- a/kyaml/fn/framework/doc.go +++ b/kyaml/fn/framework/doc.go @@ -13,6 +13,13 @@ // // Example function implementation using framework.SimpleProcessor with a struct input // +// import ( +// "sigs.k8s.io/kustomize/kyaml/errors" +// "sigs.k8s.io/kustomize/kyaml/fn/framework" +// "sigs.k8s.io/kustomize/kyaml/kio" +// "sigs.k8s.io/kustomize/kyaml/yaml" +// ) +// // type Spec struct { // Value string `yaml:"value,omitempty"` // }