summaryrefslogtreecommitdiff
path: root/cmd/geheim/main.go
blob: 4032f53bed091108fc1b541d293260b4a9d2003c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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())
}