Chore: refactor grafana-apiserver a bit (#74177)

This commit is contained in:
Kristin Laemmert
2023-08-31 09:12:01 -04:00
committed by GitHub
parent 439270f6cb
commit d1876b68bc
14 changed files with 129 additions and 187 deletions
+15
View File
@@ -0,0 +1,15 @@
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},
}