// Generate the enprot(1) man page from the clap CLI definition.
// Usage: cargo run --features cli --example gen-manpage > enprot.1
useclap::CommandFactory;useclap_mangen::Man;fnmain()->std::io::Result<()>{let cmd =enprot::cli::Cli::command();let man =Man::new(cmd);
man.render(&mutstd::io::stdout())}