mirror of https://github.com/grafana/grafana.git
16 lines
327 B
Go
16 lines
327 B
Go
|
|
package modules
|
||
|
|
|
||
|
|
const (
|
||
|
|
// All includes all modules necessary for Grafana to run as a standalone server
|
||
|
|
All string = "all"
|
||
|
|
|
||
|
|
Core string = "core"
|
||
|
|
GrafanaAPIServer string = "grafana-apiserver"
|
||
|
|
)
|
||
|
|
|
||
|
|
var dependencyMap = map[string][]string{
|
||
|
|
GrafanaAPIServer: {},
|
||
|
|
Core: {},
|
||
|
|
All: {Core},
|
||
|
|
}
|