From 31936b21a24334463f86bd92c2ef63dfc67adcb5 Mon Sep 17 00:00:00 2001 From: sneak Date: Fri, 16 May 2025 04:29:55 -0700 Subject: [PATCH] add module --- go.mod | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 go.mod diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..05056ee --- /dev/null +++ b/go.mod @@ -0,0 +1,18 @@ +module git.eeqj.de/sneak/rtnetmon + +go 1.22.2 + +require ( + github.com/gdamore/tcell/v2 v2.8.1 + github.com/montanaflynn/stats v0.7.1 +) + +require ( + github.com/gdamore/encoding v1.0.1 // indirect + github.com/lucasb-eyer/go-colorful v1.2.0 // indirect + github.com/mattn/go-runewidth v0.0.16 // indirect + github.com/rivo/uniseg v0.4.3 // indirect + golang.org/x/sys v0.29.0 // indirect + golang.org/x/term v0.28.0 // indirect + golang.org/x/text v0.21.0 // indirect +)