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. --- internal/live/live.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/live/live.go') diff --git a/internal/live/live.go b/internal/live/live.go index ff214f7..60a4ce7 100644 --- a/internal/live/live.go +++ b/internal/live/live.go @@ -6,7 +6,7 @@ import ( "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/lipgloss" "github.com/common-nighthawk/go-figure" - timrTimer "timr/internal/timer" + timrTimer "codeberg.org/snonux/timr/internal/timer" ) type tickMsg time.Time -- cgit v1.2.3