2018-08-06 13:35:16 -07:00
|
|
|
// Code generated by Wire. DO NOT EDIT.
|
|
|
|
|
|
2022-05-27 12:31:39 +07:00
|
|
|
//go:generate go run -mod=mod github.com/google/wire/cmd/wire
|
2021-08-30 13:35:47 -07:00
|
|
|
//go:build !wireinject
|
|
|
|
|
// +build !wireinject
|
2018-08-06 13:35:16 -07:00
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
// Injectors from wire.go:
|
|
|
|
|
|
|
|
|
|
func injectFooBar() FooBar {
|
|
|
|
|
foo := provideFoo()
|
|
|
|
|
bar := provideBar()
|
|
|
|
|
fooBar := provideFooBar(foo, bar)
|
|
|
|
|
return fooBar
|
|
|
|
|
}
|