mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 04:59:15 -06:00
12 lines
182 B
Go
12 lines
182 B
Go
package modules
|
|
|
|
import (
|
|
"github.com/google/wire"
|
|
)
|
|
|
|
var WireSet = wire.NewSet(
|
|
ProvideService,
|
|
wire.Bind(new(Engine), new(*service)),
|
|
wire.Bind(new(Manager), new(*service)),
|
|
)
|