6 Commits

Author SHA1 Message Date
Luiz Costa
5ffde248d6 add check over ldap 2023-10-21 21:59:46 +01:00
Luiz Costa
d44785b406 update url 2023-10-21 20:56:02 +01:00
Gorkem Meydan
46c9fb1e95 add workstation to the user info 2023-08-16 14:52:27 +03:00
vadimi
24f09f722f relax go requirement version 2020-06-13 22:25:07 -04:00
vadimi
0b76e99be3 get rid of the old library name 2020-06-13 21:31:51 -04:00
Russ Cox
c5fd2d4d2b go-ntlm: add go.mod
This file is used by vgo (go get -u golang.org/x/vgo)
and will be understood by Go 1.11 and later too.

Normally a go.mod file lists required dependencies
of a module (think repository), but this module has
no required dependencies, so the file only gives the
module path.

Defining the module path ensures that clients import
the package under its canonical name, not under
alternate casings such as

	import "github.com/thomsonREUTERSeIkOn/go-ntlm"

which would otherwise work (since GitHub answers to that path).

Having a go.mod file also makes it possible to work on
this repository outside GOPATH when using vgo or Go 1.11.
That is, the go.mod file makes it possible to

	git clone https://github.com/ThomsonReutersEikon/go-ntlm
	cd go-ntlm
	vgo build ./...
	vgo test ./...

from anywhere, not just inside GOPATH.
2018-05-24 23:04:54 -04:00