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
134 B
Go
12 lines
134 B
Go
//+build gooseinject
|
|
|
|
package main
|
|
|
|
import (
|
|
"codename/goose"
|
|
)
|
|
|
|
func injectedMessage() string {
|
|
panic(goose.Use(provideMessage))
|
|
}
|