To avoid making this CL too large, I did not migrate the existing goose comments through the repository. This will be addressed in a subsequent CL. Reviewed-by: Tuo Shan <shantuo@google.com>
12 lines
127 B
Go
12 lines
127 B
Go
//+build gooseinject
|
|
|
|
package main
|
|
|
|
import (
|
|
"codename/goose"
|
|
)
|
|
|
|
func injectFooBar(foo Foo) FooBar {
|
|
panic(goose.Use(Set))
|
|
}
|