mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
b79e61656a
* Introduce TSDB service Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> Co-authored-by: Erik Sundell <erik.sundell87@gmail.com> Co-authored-by: Will Browne <will.browne@grafana.com> Co-authored-by: Torkel Ödegaard <torkel@grafana.org> Co-authored-by: Will Browne <wbrowne@users.noreply.github.com> Co-authored-by: Zoltán Bedi <zoltan.bedi@gmail.com>
10 lines
300 B
Go
10 lines
300 B
Go
// Package backendplugin contains backend plugin related logic.
|
|
package backendplugin
|
|
|
|
import (
|
|
"github.com/grafana/grafana/pkg/infra/log"
|
|
)
|
|
|
|
// PluginFactoryFunc is a function type for creating a Plugin.
|
|
type PluginFactoryFunc func(pluginID string, logger log.Logger, env []string) (Plugin, error)
|