mirror of https://github.com/grafana/grafana.git
				
				
				
			
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
| package apiregistry
 | |
| 
 | |
| import (
 | |
| 	"github.com/grafana/grafana/pkg/registry/apis/alerting/notifications"
 | |
| 	dashboardinternal "github.com/grafana/grafana/pkg/registry/apis/dashboard"
 | |
| 	"github.com/grafana/grafana/pkg/registry/apis/dashboardsnapshot"
 | |
| 	"github.com/grafana/grafana/pkg/registry/apis/datasource"
 | |
| 	"github.com/grafana/grafana/pkg/registry/apis/featuretoggle"
 | |
| 	"github.com/grafana/grafana/pkg/registry/apis/folders"
 | |
| 	"github.com/grafana/grafana/pkg/registry/apis/iam"
 | |
| 	"github.com/grafana/grafana/pkg/registry/apis/provisioning"
 | |
| 	"github.com/grafana/grafana/pkg/registry/apis/query"
 | |
| 	"github.com/grafana/grafana/pkg/registry/apis/secret"
 | |
| 	"github.com/grafana/grafana/pkg/registry/apis/userstorage"
 | |
| )
 | |
| 
 | |
| type Service struct{}
 | |
| 
 | |
| // ProvideRegistryServiceSink is an entry point for each service that will force initialization
 | |
| // and give each builder the chance to register itself with the main server
 | |
| func ProvideRegistryServiceSink(
 | |
| 	_ *dashboardinternal.DashboardsAPIBuilder,
 | |
| 	_ *dashboardsnapshot.SnapshotsAPIBuilder,
 | |
| 	_ *featuretoggle.FeatureFlagAPIBuilder,
 | |
| 	_ *datasource.DataSourceAPIBuilder,
 | |
| 	_ *folders.FolderAPIBuilder,
 | |
| 	_ *iam.IdentityAccessManagementAPIBuilder,
 | |
| 	_ *query.QueryAPIBuilder,
 | |
| 	_ *notifications.NotificationsAPIBuilder,
 | |
| 	_ *userstorage.UserStorageAPIBuilder,
 | |
| 	_ *secret.SecretAPIBuilder,
 | |
| 	_ *provisioning.APIBuilder,
 | |
| ) *Service {
 | |
| 	return &Service{}
 | |
| }
 |