mappingSources creates MappingSources map with a single item.
(key, source string, start uint64)
| 575 | |
| 576 | // mappingSources creates MappingSources map with a single item. |
| 577 | func mappingSources(key, source string, start uint64) plugin.MappingSources { |
| 578 | return plugin.MappingSources{ |
| 579 | key: []struct { |
| 580 | Source string |
| 581 | Start uint64 |
| 582 | }{ |
| 583 | {Source: source, Start: start}, |
| 584 | }, |
| 585 | } |
| 586 | } |
| 587 | |
| 588 | type httpTransport struct{} |
| 589 |
no outgoing calls
no test coverage detected
searching dependent graphs…