(pattern string)
| 55 | ) |
| 56 | |
| 57 | func WithHTTPPathPattern(pattern string) AnnotateContextOption { |
| 58 | return func(ctx context.Context) context.Context { |
| 59 | return withHTTPPathPattern(ctx, pattern) |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | func decodeBinHeader(v string) ([]byte, error) { |
| 64 | if len(v)%4 == 0 { |
searching dependent graphs…