summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorGab Virebent <gabriel1@virebent.art>2026-07-07 16:24:28 +0200
committerGab Virebent <gabriel1@virebent.art>2026-07-07 16:24:28 +0200
commit37f156c30e2a2b01c840d39f0dd2bdbf811732d6 (patch)
treee2ce84dc7f88ce0eb312899448f91b7bb93ca8a3 /cmd
downloadgemcms-main.tar.gz
gemcms-main.tar.xz
gemcms-main.zip
Initial commitHEADmain
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)
+ }
+}