aboutsummaryrefslogtreecommitdiff
path: root/plugin.go
blob: aa964ecbad88ce45c042aaf587c2724ba56e7831 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package koushin

import (
	"html/template"

	"github.com/labstack/echo/v4"
)

const pluginDir = "plugins"

// Plugin extends koushin with additional functionality.
type Plugin interface {
	// Name should return the plugin name.
	Name() string
	// LoadTemplate populates t with the plugin's functions and templates.
	LoadTemplate(t *template.Template) error
	// SetRoutes populates group with the plugin's routes.
	SetRoutes(group *echo.Group)
	// Inject is called prior to rendering a template. It can extend the
	// template data by setting new items in the Extra map.
	Inject(name string, data interface{}) error
	// Close is called when the plugin is unloaded.
	Close() error
}