diff options
| author | Paul Buetow <paul@buetow.org> | 2025-06-29 23:39:08 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-06-29 23:39:08 +0300 |
| commit | 7ed6b00e236c875f8b9dfb97841daf95c9daecca (patch) | |
| tree | 0c18fec6595d87468bb7e8f04c521e8f9f8a4948 /cmd | |
| parent | a48203fef202b00509fb5499d8296ed20b2c618e (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.go | 4 |
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() { |
