gomod: run go work sync to sync modules

This commit is the result of running `go work sync` and `go mod tidy`
that syncs module versions for all submodules.
This commit is contained in:
yyforyongyu
2023-09-05 07:18:07 +08:00
parent 61d882b999
commit 68e6cd5c2e
14 changed files with 145 additions and 102 deletions

View File

@@ -2,4 +2,9 @@ module github.com/lightningnetwork/lnd/clock
go 1.16
require github.com/stretchr/testify v1.7.0
require (
github.com/kr/pretty v0.3.0 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/stretchr/testify v1.8.2
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)