From 42d33987cbdfe82de54a0276e3fe49acc88ce4d3 Mon Sep 17 00:00:00 2001 From: Parwinder Bhagat Date: Fri, 4 Oct 2024 22:32:45 -0500 Subject: [PATCH] mod cleanup --- .golangci.yml | 1 + go.mod | 5 ++++- go.sum | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.golangci.yml b/.golangci.yml index e1fa806c5..555055ea7 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -10,6 +10,7 @@ linters: - goimports - ineffassign - unused +# TODO: Enable the following linters # - godox # - gosec # - govet diff --git a/go.mod b/go.mod index 90aff603d..d3de5cd8b 100644 --- a/go.mod +++ b/go.mod @@ -43,7 +43,10 @@ require ( gotest.tools/gotestsum v1.6.2 ) -require github.com/CMSgov/bcda-app/optout v0.0.0-20231214212912-50fa0a1c3c8a +require ( + github.com/CMSgov/bcda-app/optout v0.0.0-20231214212912-50fa0a1c3c8a + github.com/ccoveille/go-safecast v1.1.0 +) require ( bitbucket.org/creachadair/stringset v0.0.10 // indirect diff --git a/go.sum b/go.sum index 90016efc8..033249210 100644 --- a/go.sum +++ b/go.sum @@ -143,6 +143,8 @@ github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl github.com/buger/jsonparser v0.0.0-20200322175846-f7e751efca13/go.mod h1:tgcrVJ81GPSF0mz+0nu1Xaz0fazGPrmmJfJtxjbHhUQ= github.com/c2h5oh/datasize v0.0.0-20200825124411-48ed595a09d2 h1:t8KYCwSKsOEZBFELI4Pn/phbp38iJ1RRAkDFNin1aak= github.com/c2h5oh/datasize v0.0.0-20200825124411-48ed595a09d2/go.mod h1:S/7n9copUssQ56c7aAgHqftWO4LTf4xY6CGWt8Bc+3M= +github.com/ccoveille/go-safecast v1.1.0 h1:iHKNWaZm+OznO7Eh6EljXPjGfGQsSfa6/sxPlIEKO+g= +github.com/ccoveille/go-safecast v1.1.0/go.mod h1:QqwNjxQ7DAqY0C721OIO9InMk9zCwcsO7tnRuHytad8= github.com/cenkalti/backoff/v4 v4.0.2/go.mod h1:eEew/i+1Q6OrCDZh3WiXYv3+nJwBASZ8Bog/87DQnVg= github.com/cenkalti/backoff/v4 v4.1.3 h1:cFAlzYUlVYDysBEH2T5hyJZMh3+5+WCBvSnK6Q8UtC4= github.com/cenkalti/backoff/v4 v4.1.3/go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInqkPWOWmG2CLw=