From 95159e5585762c06c654945070ba54262b7dcec9 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Sat, 15 Jun 2024 11:13:16 -0700 Subject: Refactoring and cleanup * Split CLI client into separate project * Convert more functions to follow common Golang idioms e.g io.Reader, io.Writer * Use ldflags for versioning * Misc cleanup and simplification --- go.mod | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index 868d867..5fe9eaf 100644 --- a/go.mod +++ b/go.mod @@ -3,9 +3,8 @@ module github.com/jhalter/mobius go 1.22 require ( - github.com/gdamore/tcell/v2 v2.7.4 + github.com/davecgh/go-spew v1.1.1 github.com/go-playground/validator/v10 v10.19.0 - github.com/rivo/tview v0.0.0-20240413115534-b0d41c484b95 github.com/stretchr/testify v1.9.0 golang.org/x/crypto v0.22.0 golang.org/x/text v0.14.0 @@ -14,18 +13,12 @@ require ( ) require ( - github.com/davecgh/go-spew v1.1.1 // indirect github.com/gabriel-vasile/mimetype v1.4.3 // indirect - github.com/gdamore/encoding v1.0.1 // indirect github.com/go-playground/locales v0.14.1 // indirect github.com/go-playground/universal-translator v0.18.1 // indirect github.com/leodido/go-urn v1.4.0 // indirect - github.com/lucasb-eyer/go-colorful v1.2.0 // indirect - github.com/mattn/go-runewidth v0.0.15 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/rivo/uniseg v0.4.7 // indirect github.com/stretchr/objx v0.5.2 // indirect golang.org/x/net v0.24.0 // indirect golang.org/x/sys v0.19.0 // indirect - golang.org/x/term v0.19.0 // indirect ) -- cgit