Files
wire/internal/wire/testdata/Vendor/want/wire_gen.go
shantuo 86725a2b3f wire: make tests work with Go modules (google/go-cloud#331)
Generates go.mod files for test cases to support Go modules.
2018-11-13 13:16:46 -08:00

18 lines
242 B
Go

// Code generated by Wire. DO NOT EDIT.
//go:generate wire
//+build !wireinject
package main
import (
bar "example.com/bar"
)
// Injectors from wire.go:
func injectedMessage() string {
string2 := bar.ProvideMessage()
return string2
}