mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
* refactor * implement with infra log for now * undo moving * update package name * update name * fix tests * update pretty signature * update naming * simplify * fix typo * delete comment * fix import * retrigger
10 lines
302 B
Go
10 lines
302 B
Go
// Package backendplugin contains backend plugin related logic.
|
|
package backendplugin
|
|
|
|
import (
|
|
"github.com/grafana/grafana/pkg/plugins/log"
|
|
)
|
|
|
|
// PluginFactoryFunc is a function type for creating a Plugin.
|
|
type PluginFactoryFunc func(pluginID string, logger log.Logger, env []string) (Plugin, error)
|