diff --git a/lfsapi/ntlm.go b/lfsapi/ntlm.go new file mode 100644 index 00000000..9ee4d794 --- /dev/null +++ b/lfsapi/ntlm.go @@ -0,0 +1,10 @@ +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) +}