We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I thought SetProxy could be useful. Maybe this can be added in the future.
SetProxy
// SetProxy sets a Proxy for the HTTP client func (m *Mega) SetProxy(proxy string) { proxyURL, _ := url.Parse(proxy) transport := &http.Transport{ Proxy: http.ProxyURL(proxyURL), } m.client.Transport = transport }