summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-06-29 23:39:08 +0300
committerPaul Buetow <paul@buetow.org>2025-06-29 23:39:08 +0300
commit7ed6b00e236c875f8b9dfb97841daf95c9daecca (patch)
tree0c18fec6595d87468bb7e8f04c521e8f9f8a4948 /cmd
parenta48203fef202b00509fb5499d8296ed20b2c618e (diff)
fix: correct go module path and import pathsv0.0.0
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.
Diffstat (limited to 'cmd')
-rw-r--r--cmd/timr/main.go4
1 files changed, 2 insertions, 2 deletions
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() {