mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 13:39:19 -06:00
e217854c24
Co-authored-by: Will Browne <wbrowne@users.noreply.github.com>
10 lines
177 B
Go
10 lines
177 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)),
|
|
)
|