16 lines
241 B
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(),
|
||
|
}
|
||
|
}
|