From 7ed6b00e236c875f8b9dfb97841daf95c9daecca Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 29 Jun 2025 23:39:08 +0300 Subject: fix: correct go module path and import paths The go module path was previously declared as `timr`, which caused issues with dependencies that expected the full path `codeberg.org/snonux/timr`. This commit updates the `go.mod` file to use the correct module path and also updates all import paths throughout the project to reflect this change. --- go.mod | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index b77964f..1160426 100644 --- a/go.mod +++ b/go.mod @@ -1,17 +1,19 @@ -module timr +module codeberg.org/snonux/timr go 1.24.3 +require ( + github.com/charmbracelet/bubbletea v1.3.5 + github.com/charmbracelet/lipgloss v1.1.0 + github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be +) + require ( github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect - github.com/charmbracelet/bubbles v0.21.0 // indirect - github.com/charmbracelet/bubbletea v1.3.5 // indirect github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect - github.com/charmbracelet/lipgloss v1.1.0 // indirect github.com/charmbracelet/x/ansi v0.8.0 // indirect github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd // indirect github.com/charmbracelet/x/term v0.2.1 // indirect - github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be // indirect github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect github.com/lucasb-eyer/go-colorful v1.2.0 // indirect github.com/mattn/go-isatty v0.0.20 // indirect -- cgit v1.2.3