From a07e0d2ef6824e9a8518eaf9e5ef0c5db675fac7 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 6 May 2024 21:27:23 +0200 Subject: [PATCH] cleanup import --- internal/doc/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/doc/main.go b/internal/doc/main.go index 6de7382..6d52a9d 100644 --- a/internal/doc/main.go +++ b/internal/doc/main.go @@ -12,7 +12,7 @@ import ( "github.com/thegeeklab/wp-git-action/plugin" "github.com/thegeeklab/wp-plugin-go/v2/docs" - wp_template "github.com/thegeeklab/wp-plugin-go/v2/template" + "github.com/thegeeklab/wp-plugin-go/v2/template" ) func main() { @@ -23,7 +23,7 @@ func main() { p := plugin.New(nil) - out, err := wp_template.Render(context.Background(), client, tmpl, docs.GetTemplateData(p.App)) + out, err := template.Render(context.Background(), client, tmpl, docs.GetTemplateData(p.App)) if err != nil { panic(err) }