summaryrefslogtreecommitdiff
path: root/cmd/timr
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/timr')
-rw-r--r--cmd/timr/main.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/cmd/timr/main.go b/cmd/timr/main.go
deleted file mode 100644
index eea7d78..0000000
--- a/cmd/timr/main.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package main
-
-import (
- "fmt"
- "os"
-
- "codeberg.org/snonux/timr/internal/cli"
-)
-
-func main() {
- if err := cli.Execute(); err != nil {
- fmt.Fprintln(os.Stderr, "Error:", err)
- os.Exit(1)
- }
-}