From f768186c5148f5f60096720d4cd7c1583d9375a3 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 12 Mar 2023 17:12:51 +0100 Subject: [PATCH] go.mod: getopt is not an indirect dependency. --- go.mod | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 5c4602f..2479bd0 100644 --- a/go.mod +++ b/go.mod @@ -2,11 +2,13 @@ module pinger go 1.19 -require github.com/prometheus-community/pro-bing v0.1.0 +require ( + github.com/pborman/getopt/v2 v2.1.0 + github.com/prometheus-community/pro-bing v0.1.0 +) require ( github.com/google/uuid v1.3.0 // indirect - github.com/pborman/getopt/v2 v2.1.0 // indirect golang.org/x/net v0.5.0 // indirect golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect golang.org/x/sys v0.4.0 // indirect