mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* add bundle registry service to avoid dependency cycles * move user support bundle collector to user service * move usage stat bundle implementation to usage stats * add info for background service * fix remaining imports * whitespace
13 lines
305 B
Go
13 lines
305 B
Go
package supportbundlestest
|
|
|
|
import "github.com/grafana/grafana/pkg/services/supportbundles"
|
|
|
|
type FakeBundleService struct {
|
|
}
|
|
|
|
func NewFakeBundleService() *FakeBundleService {
|
|
return &FakeBundleService{}
|
|
}
|
|
|
|
func (s *FakeBundleService) RegisterSupportItemCollector(collector supportbundles.Collector) {}
|