mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 01:32:08 +08:00
Introduce TSDB service (#31520)
* 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>
This commit is contained in:
9
pkg/plugins/backendplugin/backendplugin.go
Normal file
9
pkg/plugins/backendplugin/backendplugin.go
Normal file
@ -0,0 +1,9 @@
|
||||
// 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)
|
Reference in New Issue
Block a user