| 72 | var _ = io.WriterTo(&Bundle{}) |
| 73 | |
| 74 | type indexEntry struct { |
| 75 | Request |
| 76 | Variants string |
| 77 | VariantKey string |
| 78 | Offset uint64 // Offset within the responses section |
| 79 | Length uint64 |
| 80 | } |
| 81 | |
| 82 | func (r indexEntry) String() string { |
| 83 | return fmt.Sprintf("{URL: %v, Header: %v, Offset: %d, Length: %d}", r.URL, r.Header, r.Offset, r.Length) |
nothing calls this directly
no outgoing calls
no test coverage detected