From 619980177e069054a1b1b7d57f38d9306f239945 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 21 Aug 2026 17:25:46 +0000 Subject: [PATCH] Mark gopkg.in/yaml.v3 as a direct dependency in go.mod internal/config imports yaml.v3 directly, but go.mod carried a stale "// indirect" comment. Run `go mod tidy` to correct the require directive and pull in the resulting go.sum entry. Closes #69 --- go.mod | 2 +- go.sum | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index b738b86..fd7be98 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module github.com/larslaskowski/pimonitor go 1.22 -require gopkg.in/yaml.v3 v3.0.1 // indirect +require gopkg.in/yaml.v3 v3.0.1 diff --git a/go.sum b/go.sum index 4bc0337..a62c313 100644 --- a/go.sum +++ b/go.sum @@ -1,3 +1,4 @@ +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=