mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
11 lines
252 B
Go
11 lines
252 B
Go
package navtree
|
|
|
|
import (
|
|
"github.com/grafana/grafana/pkg/models"
|
|
pref "github.com/grafana/grafana/pkg/services/preference"
|
|
)
|
|
|
|
type Service interface {
|
|
GetNavTree(c *models.ReqContext, hasEditPerm bool, prefs *pref.Preference) ([]*NavLink, error)
|
|
}
|