Add basic terminal user interface

This commit is contained in:
Olli 2025-10-16 07:59:16 +02:00
commit 5956331a28
9 changed files with 878 additions and 0 deletions

16
go.mod
View file

@ -1,3 +1,19 @@
module suruatoel.xyz/timefiles
go 1.24.2
require (
github.com/gdamore/tcell/v2 v2.9.0
github.com/rivo/tview v0.42.0
)
require (
github.com/clipperhouse/uax29/v2 v2.2.0 // indirect
github.com/gdamore/encoding v1.0.1 // indirect
github.com/lucasb-eyer/go-colorful v1.3.0 // indirect
github.com/mattn/go-runewidth v0.0.19 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
golang.org/x/sys v0.37.0 // indirect
golang.org/x/term v0.36.0 // indirect
golang.org/x/text v0.30.0 // indirect
)