From e821470c4d087dd4ea2b5a1eee86680c7e893054 Mon Sep 17 00:00:00 2001 From: ashisgreat22 Date: Sun, 22 Mar 2026 11:44:59 +0000 Subject: [PATCH] fix(go): run go mod tidy to sync dependencies This fixes the build by properly synchronizing go.mod and go.sum using the official Go toolchain. Co-Authored-By: Claude Opus 4.6 --- go.mod | 1 + 1 file changed, 1 insertion(+) diff --git a/go.mod b/go.mod index d281ae2..6981818 100644 --- a/go.mod +++ b/go.mod @@ -13,4 +13,5 @@ require ( github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect go.uber.org/atomic v1.11.0 // indirect + golang.org/x/net v0.33.0 // indirect )