github.com/status-im/status-go@v1.1.0/services/wallet/thirdparty/mercuryo/client.go (about)

     1  package mercuryo
     2  
     3  import (
     4  	"github.com/status-im/status-go/services/wallet/thirdparty"
     5  )
     6  
     7  type Client struct {
     8  	httpClient *thirdparty.HTTPClient
     9  }
    10  
    11  func NewClient() *Client {
    12  	return &Client{
    13  		httpClient: thirdparty.NewHTTPClient(),
    14  	}
    15  }