mirror of
https://github.com/status-im/status-go.git
synced 2025-02-09 05:16:35 +00:00
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(),
|
|
}
|
|
}
|