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. --- cmd/timr/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd') diff --git a/cmd/timr/main.go b/cmd/timr/main.go index c52dae9..cbc6481 100644 --- a/cmd/timr/main.go +++ b/cmd/timr/main.go @@ -6,8 +6,8 @@ import ( "strings" "github.com/charmbracelet/bubbletea" - "timr/internal/live" - "timr/internal/timer" + "codeberg.org/snonux/timr/internal/live" + "codeberg.org/snonux/timr/internal/timer" ) func main() { -- cgit v1.2.3