summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/gemcms/main.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/cmd/gemcms/main.go b/cmd/gemcms/main.go
new file mode 100644
index 0000000..5c0c67b
--- /dev/null
+++ b/cmd/gemcms/main.go
@@ -0,0 +1,16 @@
+package main
+
+import (
+ "context"
+ "fmt"
+ "os"
+
+ "gemcms/internal/cli"
+)
+
+func main() {
+ if err := cli.Run(context.Background(), os.Args[1:], os.Stdout, os.Stderr); err != nil {
+ fmt.Fprintln(os.Stderr, "gemcms:", err)
+ os.Exit(1)
+ }
+}