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.
This commit is contained in:
db123-test
2026-05-04 09:54:57 +03:30
parent 55cd06fb51
commit 00552b7a04

2
go.mod
View File

@@ -1,4 +1,4 @@
module go.mod
module auth-proxy
go 1.25.0