chore: ⬆️ Vendor for new deps

This commit is contained in:
2026-02-07 15:51:20 +02:00
parent 88589e00e7
commit 47bf748fd5
128 changed files with 83822 additions and 29 deletions

View File

@@ -0,0 +1,15 @@
package ntlm
import (
"github.com/microsoft/go-mssqldb/integratedauth"
)
// AuthProvider handles NTLM SSPI Windows Authentication
var AuthProvider integratedauth.Provider = integratedauth.ProviderFunc(getAuth)
func init() {
err := integratedauth.SetIntegratedAuthenticationProvider("ntlm", AuthProvider)
if err != nil {
panic(err)
}
}