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 /go.mod | |
| 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 'go.mod')
| -rw-r--r-- | go.mod | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -1,17 +1,19 @@ -module timr +module codeberg.org/snonux/timr go 1.24.3 require ( + github.com/charmbracelet/bubbletea v1.3.5 + github.com/charmbracelet/lipgloss v1.1.0 + github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be +) + +require ( github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect - github.com/charmbracelet/bubbles v0.21.0 // indirect - github.com/charmbracelet/bubbletea v1.3.5 // indirect github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect - github.com/charmbracelet/lipgloss v1.1.0 // indirect github.com/charmbracelet/x/ansi v0.8.0 // indirect github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd // indirect github.com/charmbracelet/x/term v0.2.1 // indirect - github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be // indirect github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect github.com/lucasb-eyer/go-colorful v1.2.0 // indirect github.com/mattn/go-isatty v0.0.20 // indirect |
