From 61d519399fa85e4e6034aeba216dfe8769b4a7da Mon Sep 17 00:00:00 2001 From: Haelnorr Date: Sun, 4 Jan 2026 01:11:25 +1100 Subject: [PATCH] fixed incorrect import --- hwsauth/authenticator.go | 2 +- hwsauth/go.mod | 1 + hwsauth/go.sum | 2 ++ hwsauth/middleware.go | 2 +- 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/hwsauth/authenticator.go b/hwsauth/authenticator.go index 22c4b14..b4562c8 100644 --- a/hwsauth/authenticator.go +++ b/hwsauth/authenticator.go @@ -2,8 +2,8 @@ package hwsauth import ( "database/sql" - "projectreshoot/pkg/hws" + "git.haelnorr.com/h/golib/hws" "git.haelnorr.com/h/golib/jwt" "github.com/pkg/errors" "github.com/rs/zerolog" diff --git a/hwsauth/go.mod b/hwsauth/go.mod index 43a4f5c..7df5fe1 100644 --- a/hwsauth/go.mod +++ b/hwsauth/go.mod @@ -5,6 +5,7 @@ go 1.25.5 require ( git.haelnorr.com/h/golib/cookies v0.9.0 git.haelnorr.com/h/golib/jwt v0.9.2 + git.haelnorr.com/h/golib/hws v0.1.0 github.com/pkg/errors v0.9.1 github.com/rs/zerolog v1.34.0 ) diff --git a/hwsauth/go.sum b/hwsauth/go.sum index 2d48923..f7f26ac 100644 --- a/hwsauth/go.sum +++ b/hwsauth/go.sum @@ -1,5 +1,7 @@ git.haelnorr.com/h/golib/cookies v0.9.0 h1:Vf+eX1prHkKuGrQon1BHY87yaPc1H+HJFRXDOV/AuWs= git.haelnorr.com/h/golib/cookies v0.9.0/go.mod h1:y1385YExI9gLwckCVDCYVcsFXr6N7T3brJjnJD2QIuo= +git.haelnorr.com/h/golib/hws v0.1.0 h1:+0eNq1uGWrGfbS5AgHeGoGDjVfCWuaVu+1wBxgPqyOY= +git.haelnorr.com/h/golib/hws v0.1.0/go.mod h1:b2pbkMaebzmck9TxqGBGzTJPEcB5TWcEHwFknLE7dqM= git.haelnorr.com/h/golib/jwt v0.9.2 h1:l1Ow7DPGACAU54CnMP/NlZjdc4nRD1wr3xZ8a7taRvU= git.haelnorr.com/h/golib/jwt v0.9.2/go.mod h1:fbuPrfucT9lL0faV5+Q5Gk9WFJxPlwzRPpbMQKYZok4= github.com/DATA-DOG/go-sqlmock v1.5.2 h1:OcvFkGmslmlZibjAjaHm3L//6LiuBgolP7OputlJIzU= diff --git a/hwsauth/middleware.go b/hwsauth/middleware.go index 6d4d38a..e1089c9 100644 --- a/hwsauth/middleware.go +++ b/hwsauth/middleware.go @@ -2,8 +2,8 @@ package hwsauth import ( "context" + "git.haelnorr.com/h/golib/hws" "net/http" - "projectreshoot/pkg/hws" "slices" "time" )