diff --git a/internal/doc/main.go b/internal/doc/main.go index f8f36df..dac9371 100644 --- a/internal/doc/main.go +++ b/internal/doc/main.go @@ -12,7 +12,7 @@ import ( "github.com/thegeeklab/wp-git-clone/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) }