2018-03-30 11:17:35 -07:00
|
|
|
//+build gooseinject
|
|
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
stdcontext "context"
|
|
|
|
|
|
2018-04-27 13:44:54 -04:00
|
|
|
"codename/goose"
|
|
|
|
|
)
|
2018-03-30 11:17:35 -07:00
|
|
|
|
2018-04-27 13:44:54 -04:00
|
|
|
func inject(context stdcontext.Context, err struct{}) (context, error) {
|
|
|
|
|
panic(goose.Use(provide))
|
|
|
|
|
}
|