Files
grafana/pkg/services/authz/wireset.go
Gabriel MABILLE afcb5a855c AuthZ: embed an authorization server (#89018)
* AuthZ: embed an authorization server

* CODEOWNERS

* Remove swagger

* WIP

* Flatten structure and inject wireset

* sync mod files

* Rename authorization package

* Fix swagger gen

* CODEOWNERS

* Use itf instead of impl

---------

Co-authored-by: Karl Persson <kalle.persson@grafana.com>
2024-06-13 11:41:35 +02:00

10 lines
103 B
Go

package authz
import (
"github.com/google/wire"
)
var WireSet = wire.NewSet(
ProvideAuthZClient,
)