Refactor search (#23550)

Co-Authored-By: Arve Knudsen <arve.knudsen@grafana.com>
Co-Authored-By: Leonard Gram <leonard.gram@grafana.com>
This commit is contained in:
Emil Tullstedt
2020-04-20 16:20:45 +02:00
committed by GitHub
co-authored by Arve Knudsen Leonard Gram
parent e5dd7efdee
commit 55c306eb6d
13 changed files with 778 additions and 16 deletions
+2
View File
@@ -4,6 +4,7 @@ import (
"context"
"crypto/tls"
"fmt"
"github.com/grafana/grafana/pkg/services/search"
"net"
"net/http"
"os"
@@ -67,6 +68,7 @@ type HTTPServer struct {
License models.Licensing `inject:""`
BackendPluginManager backendplugin.Manager `inject:""`
PluginManager *plugins.PluginManager `inject:""`
SearchService *search.SearchService `inject:""`
}
func (hs *HTTPServer) Init() error {