1 2 3 4 5 6 7 8 9
//! `plugmem` — the CLI binary. A one-liner over [`plugmem_cli::run`]; all //! logic (and its tests) live in the library so this file needs no //! coverage. use std::process::ExitCode; fn main() -> ExitCode { plugmem_cli::run() }