18 lines
242 B
Go
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
|
|
}
|