1 2 3 4 5 6 7 8 9 10
//! Confers CLI entry point //! //! Binary entry point for the confers command-line tool. //! See `src/cli/` for implementation. use anyhow::Result; fn main() -> Result<()> { confers::cli::run() }