From 00552b7a04d1d158f2e2030ead153559d486bf67 Mon Sep 17 00:00:00 2001 From: db123-test Date: Mon, 4 May 2026 09:54:57 +0330 Subject: [PATCH] fix: rename module in go.mod from 'go.mod' to 'auth-proxy' The go.mod file had an incorrect module name 'go.mod' instead of the actual project name 'auth-proxy'. This fix corrects the module declaration to match the repository name and enable proper Go module resolution. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index a8d2bc3..9309b81 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module go.mod +module auth-proxy go 1.25.0