git-lfs/lfsapi/ntlm.go

11 lines
176 B
Go
Raw Normal View History

2016-12-20 19:23:04 +00:00
package lfsapi
import (
"net/http"
"net/url"
)
func (c *Client) doWithNTLM(req *http.Request, creds Creds, credsURL *url.URL) (*http.Response, error) {
return c.Do(req)
}