mirror of
https://github.com/grafana/grafana.git
synced 2024-12-27 09:21:35 -06:00
606a74d0af
* Zanana: Initial work to run zanana as ebeddedn or standalone * Add addr settings for when remote client is used. * sync dependencies * Lock mysql driver version --------- Co-authored-by: Dan Cech <dcech@grafana.com>
11 lines
120 B
Go
11 lines
120 B
Go
package authz
|
|
|
|
import (
|
|
"github.com/google/wire"
|
|
)
|
|
|
|
var WireSet = wire.NewSet(
|
|
ProvideAuthZClient,
|
|
ProvideZanzana,
|
|
)
|