mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
15 lines
302 B
Go
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,
|
|
)
|