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
14 lines
269 B
Go
14 lines
269 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 injectedMessage(t title, lines ...string) string {
|
|
string2 := provideMessage(lines...)
|
|
return string2
|
|
}
|