dlipicar b9d083c6d5
feat(wallet): add split onramp url endpoint (#5656)
* feat(wallet)_: add split onramp url endpoint & fix onrmap url
2024-08-12 12:53:32 +00:00

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(),
}
}