mirror of https://github.com/grafana/grafana.git
				
				
				
			
		
			
				
	
	
		
			11 lines
		
	
	
		
			296 B
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			296 B
		
	
	
	
		
			Go
		
	
	
	
| package navtree
 | |
| 
 | |
| import (
 | |
| 	contextmodel "github.com/grafana/grafana/pkg/services/contexthandler/model"
 | |
| 	pref "github.com/grafana/grafana/pkg/services/preference"
 | |
| )
 | |
| 
 | |
| type Service interface {
 | |
| 	GetNavTree(c *contextmodel.ReqContext, hasEditPerm bool, prefs *pref.Preference) (*NavTreeRoot, error)
 | |
| }
 |