summaryrefslogtreecommitdiff
path: root/internal/cli/cli.go
blob: 4b4e8c5e902a6fe16df36896066c850e6922f86b (plain)
1
2
3
4
5
6
7
8
9
// Package cli implements the command-line interface for geheim.
// Run() is called by main and returns an exit code.
package cli

// Run is the top-level entry point for the CLI.
// Returns 0 on success, non-zero on error.
func Run() int {
	return 0
}