grafana_bak/pkg/storage/unified/search/dashboard_stats.go
2025-04-01 10:38:02 +09:00

16 lines
288 B
Go

package search
import (
"context"
)
type OssDashboardStats struct{}
func ProvideDashboardStats() *OssDashboardStats {
return &OssDashboardStats{}
}
func (s *OssDashboardStats) GetStats(ctx context.Context, namespace string) (map[string]map[string]int64, error) {
return nil, nil
}