summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-06-25 22:45:26 +0300
committerPaul Buetow <paul@buetow.org>2025-06-25 22:45:26 +0300
commit17f7367b0a3aac087b36218fcfb0e79851c9e475 (patch)
tree2bf2ecd14abd3adbb536956891a5355bd7d5659f /cmd
parent804ad8450fcfdd0e5e89c239422f3f93002eef41 (diff)
fix
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 fb28618..554d1ca 100644
--- a/cmd/timr/main.go
+++ b/cmd/timr/main.go
@@ -5,7 +5,7 @@ import (
"fmt"
"os"
- "codeberg.org/snonux/timr/internal/version"
+ "codeberg.org/snonux/timr/internal"
)
func main() {
@@ -13,7 +13,7 @@ func main() {
flag.Parse()
if *versionFlag {
- fmt.Println(version.Version)
+ fmt.Println(internal.Version)
os.Exit(0)
}
}