Change the go:generate command to use the full go run ... command to ensure the version specified in the current go module is used instead of the global binary. Fixes #160
18 lines
308 B
Go
18 lines
308 B
Go
// Code generated by Wire. DO NOT EDIT.
|
|
|
|
//go:generate go run github.com/google/wire/cmd/wire
|
|
//+build !wireinject
|
|
|
|
package main
|
|
|
|
// Injectors from wire.go:
|
|
|
|
func injectBar() (*Bar, func()) {
|
|
foo, cleanup := provideFoo()
|
|
bar, cleanup2 := provideBar(foo)
|
|
return bar, func() {
|
|
cleanup2()
|
|
cleanup()
|
|
}
|
|
}
|