mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 17:43:35 -06:00
17 lines
409 B
Cheetah
17 lines
409 B
Cheetah
|
{{ template "autogen_header.tmpl" .Header -}}
|
||
|
package registry
|
||
|
|
||
|
import (
|
||
|
"github.com/grafana/grafana/pkg/plugins/pfs"
|
||
|
"github.com/grafana/thema"
|
||
|
{{ range .Plugins }}
|
||
|
{{ if .NoAlias }}{{ .PkgName }} {{end}}"{{ .Path }}"{{ end }}
|
||
|
)
|
||
|
|
||
|
func coreTreeLoaders() []func(*thema.Library) *pfs.Tree{
|
||
|
return []func(*thema.Library) *pfs.Tree{
|
||
|
{{- range .Plugins }}
|
||
|
{{ .PkgName }}.PluginTree,{{ end }}
|
||
|
}
|
||
|
}
|