Files
grafana/pkg/services/grafana-apiserver/auth/authorizer/wireset.go
2023-10-12 21:34:50 +03:00

15 lines
302 B
Go

package authorizer
import (
"github.com/google/wire"
"github.com/grafana/grafana/pkg/services/grafana-apiserver/auth/authorizer/org"
"github.com/grafana/grafana/pkg/services/grafana-apiserver/auth/authorizer/stack"
)
var WireSet = wire.NewSet(
org.WireSet,
stack.WireSet,
ProvideAuthorizer,
)