git-lfs/lfsapi/ntlm.go
risk danger olson 272e2d2623 add ntlm file
2016-12-20 12:23:04 -07:00

11 lines
176 B
Go

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