summaryrefslogtreecommitdiffstats
path: root/plugin/api.go
blob: c62ae0f55b46717142dc1ac8219edb6f88d9eaa4 (plain)
1
2
3
4
5
6
7
package plugin

type API interface {
	// LoadPluginConfiguration loads the plugin's configuration. dest should be a pointer to a
	// struct that the configuration JSON can be unmarshalled to.
	LoadPluginConfiguration(dest interface{}) error
}