mirror of
https://github.com/status-im/status-go.git
synced 2025-01-11 23:25:29 +00:00
b9d083c6d5
* feat(wallet)_: add split onramp url endpoint & fix onrmap url
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(),
|
|
}
|
|
}
|