add ntlm file

This commit is contained in:
risk danger olson 2016-12-20 12:23:04 -07:00
parent 21c9759dc8
commit 272e2d2623

10
lfsapi/ntlm.go Normal file

@ -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)
}