Sign in
go
/
talks
/
42334b6f2551955b5e77dbcc47b0d511c24fa08e
/
.
/
2014
/
gotham-context
/
eg.go
blob: c314f4d613f97b5f2bfe22991ad0ea4a6ae1e5ae [
file
] [
log
] [
blame
]
// +build OMIT
package P
import (
"xpkg"
"ypkg"
"golang.org/x/net/context"
)
func before(x xpkg.X, y ypkg.Y) error {
// HL
return x.M(y)
}
func after(x xpkg.X, y ypkg.Y) error {
// HL
return x.MContext(context.TODO(), y)
}