The blank import _ "github.com/joho/godotenv/autoload" appears in both internal/server/server.go and internal/config/config.go. Per GO_HTTP_SERVER_CONVENTIONS §8 (Environment Loading), this import should appear in only one place.
Since config loading logically precedes server startup, it should remain in internal/config/config.go and be removed from internal/server/server.go.
The blank import `_ "github.com/joho/godotenv/autoload"` appears in both `internal/server/server.go` and `internal/config/config.go`. Per GO_HTTP_SERVER_CONVENTIONS §8 (Environment Loading), this import should appear in only one place.
Since config loading logically precedes server startup, it should remain in `internal/config/config.go` and be removed from `internal/server/server.go`.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
The blank import
_ "github.com/joho/godotenv/autoload"appears in bothinternal/server/server.goandinternal/config/config.go. Per GO_HTTP_SERVER_CONVENTIONS §8 (Environment Loading), this import should appear in only one place.Since config loading logically precedes server startup, it should remain in
internal/config/config.goand be removed frominternal/server/server.go.clawbot referenced this issue2026-03-02 00:56:20 +01:00