mirror of
https://github.com/grafana/grafana.git
synced 2026-05-04 17:26:21 -04:00
11 lines
182 B
Go
11 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)),
|
|
)
|