diff --git a/go.mod b/go.mod index 66a7216..e301950 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,9 @@ module github.com/Luzifer/go_helpers/v2 go 1.12 + +require ( + github.com/inconshreveable/go-update v0.0.0-20160112193335-8152e7eb6ccf + github.com/leekchan/gtf v0.0.0-20190214083521-5fba33c5b00b + gopkg.in/yaml.v2 v2.2.2 +) diff --git a/http/digest.go b/http/digest.go index 40cc5aa..4e1f981 100644 --- a/http/digest.go +++ b/http/digest.go @@ -9,7 +9,7 @@ import ( "net/http" "strings" - "github.com/Luzifer/go_helpers/str" + "github.com/Luzifer/go_helpers/v2/str" ) func GetDigestAuth(resp *http.Response, method, requestPath, user, password string) string { diff --git a/http/logHandler.go b/http/logHandler.go index 4554e74..83fa472 100644 --- a/http/logHandler.go +++ b/http/logHandler.go @@ -6,7 +6,7 @@ import ( "strings" "time" - "github.com/Luzifer/go_helpers/accessLogger" + "github.com/Luzifer/go_helpers/v2/accessLogger" ) type HTTPLogHandler struct {