The Fetcher package provides a simplified client interface to communicate with a Mesh server. It also provides automatic retries and concurrent block fetches.
If you want a lower-level interface to communicate with a Mesh server, check out the Client.
go get github.com/coinbase/mesh-sdk-go/fetcher
Creating a basic Fetcher is as easy as providing a context and Mesh server URL:
fetcher := fetcher.New(ctx, serverURL)
It is also possible to provide a series of optional arguments that override default behavior. For example, it is possible to override the concurrency for making block requests:
fetcher := fetcher.New(ctx, serverURL, fetcher.WithBlockConcurrency(10))
Check out the examples to see how easy it is to connect to a Mesh server.