mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 08:05:43 -06:00
e5a6547a94
* Update thema to latest * Deal with s/Library/*Runtime/ * Commit new, working results of codegen
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.Runtime) *pfs.Tree{
|
|
return []func(*thema.Runtime) *pfs.Tree{
|
|
{{- range .Plugins }}
|
|
{{ .PkgName }}.PluginTree,{{ end }}
|
|
}
|
|
}
|