go mod tidy

This commit is contained in:
eyedeekay
2024-11-14 10:36:36 -05:00
parent e10de5e607
commit 4a2db938f7
2 changed files with 5 additions and 4 deletions

View File

@ -4,6 +4,8 @@ i2pkeys
Generates and displays the contents of files that are storing i2p keys in the Generates and displays the contents of files that are storing i2p keys in the
incompatible format used for sam3 incompatible format used for sam3
[![Go Report Card](https://goreportcard.com/badge/github.com/eyedeekay/i2pkeys)](https://goreportcard.com/report/github.com/eyedeekay/i2pkeys)
## Verbosity ## ## Verbosity ##
Logging can be enabled and configured using the DEBUG_I2P environment variable. By default, logging is disabled. Logging can be enabled and configured using the DEBUG_I2P environment variable. By default, logging is disabled.

7
go.mod
View File

@ -2,7 +2,6 @@ module github.com/go-i2p/i2pkeys
go 1.17 go 1.17
require ( require github.com/sirupsen/logrus v1.9.3
github.com/sirupsen/logrus v1.9.3 // indirect
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect require golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
)