mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
9 lines
141 B
Go
9 lines
141 B
Go
package registry
|
|
|
|
import "github.com/google/wire"
|
|
|
|
var WireSet = wire.NewSet(
|
|
ProvideRegistry,
|
|
wire.Bind(new(Registry), new(*registry)),
|
|
)
|