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 /internal/live | |
| 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 'internal/live')
| -rw-r--r-- | internal/live/live.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
