summaryrefslogtreecommitdiff
path: root/cmd/claudomator/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/claudomator/main.go')
-rw-r--r--cmd/claudomator/main.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/cmd/claudomator/main.go b/cmd/claudomator/main.go
new file mode 100644
index 0000000..e6cba37
--- /dev/null
+++ b/cmd/claudomator/main.go
@@ -0,0 +1,15 @@
+package main
+
+import (
+ "fmt"
+ "os"
+
+ "github.com/claudomator/claudomator/internal/cli"
+)
+
+func main() {
+ if err := cli.Execute(); err != nil {
+ fmt.Fprintf(os.Stderr, "Error: %v\n", err)
+ os.Exit(1)
+ }
+}