summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/geheim/main.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/cmd/geheim/main.go b/cmd/geheim/main.go
new file mode 100644
index 0000000..4032f53
--- /dev/null
+++ b/cmd/geheim/main.go
@@ -0,0 +1,13 @@
+// main is the entry point for the geheim binary.
+// It delegates all logic to the cli package and exits with the returned code.
+package main
+
+import (
+ "os"
+
+ "codeberg.org/snonux/geheim/internal/cli"
+)
+
+func main() {
+ os.Exit(cli.Run())
+}