// 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 }