status-go/services/wallet/thirdparty/mercuryo/client.go

16 lines
241 B
Go

package mercuryo
import (
"github.com/status-im/status-go/services/wallet/thirdparty"
)
type Client struct {
httpClient *thirdparty.HTTPClient
}
func NewClient() *Client {
return &Client{
httpClient: thirdparty.NewHTTPClient(),
}
}