diff --git a/internal/docs/main.go b/internal/docs/main.go index f085746..8acabc9 100644 --- a/internal/docs/main.go +++ b/internal/docs/main.go @@ -12,7 +12,7 @@ import ( "github.com/thegeeklab/wp-ansible/plugin" "github.com/thegeeklab/wp-plugin-go/docs" - wp_template "github.com/thegeeklab/wp-plugin-go/template" + "github.com/thegeeklab/wp-plugin-go/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) }