mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
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},
|
|
}
|