aboutsummaryrefslogtreecommitdiff
path: root/plugin.go
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2019-12-10 16:07:02 +0100
committerSimon Ser <contact@emersion.fr>2019-12-10 16:07:02 +0100
commit4a504b0fc6d76afa52fbdafde338182c8463f6a0 (patch)
treecae529e3582ef6987682497011e72b694da97a58 /plugin.go
parent95da47f7c4522247b7136d14a923d54be5c1a9ae (diff)
downloadalps-4a504b0fc6d76afa52fbdafde338182c8463f6a0.tar.gz
alps-4a504b0fc6d76afa52fbdafde338182c8463f6a0.zip
Rename Plugin.Render to Plugin.Inject
This function doesn't render anything, it just adds extra data to the template data.
Diffstat (limited to 'plugin.go')
-rw-r--r--plugin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin.go b/plugin.go
index 6a5b7e7..03e2261 100644
--- a/plugin.go
+++ b/plugin.go
@@ -10,6 +10,6 @@ type Plugin interface {
Name() string
Filters() template.FuncMap
SetRoutes(group *echo.Group)
- Render(name string, data interface{}) error
+ Inject(name string, data interface{}) error
Close() error
}