ipfs-search/ipfs-search

View on GitHub
components/index/opensearch/bulkgetter/reqresp.go

Summary

Maintainability
A
0 mins
Test Coverage
package bulkgetter

import (
    "context"
    "fmt"
)

type reqresp struct {
    ctx  context.Context
    req  *GetRequest
    resp chan GetResponse
    dst  interface{}
}

func (rr *reqresp) String() string {
    return fmt.Sprintf("reqresp: %v", rr.req)
}