123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package tap
- import (
- "golang.org/x/net/context"
- )
- type Info struct {
-
-
- FullMethodName string
-
- }
- type ServerInHandle func(ctx context.Context, info *Info) (context.Context, error)
|