//! `contacts` subcommand: pull, list, fetch, reverse-lookup, or sync PBAP contacts.
// `pub mod` (not `mod`) is required for `live`/`store`/`sync`: `pub(crate)` on their `run`
// functions trips `redundant_pub_crate` inside a private module, while `pub` trips
// `unreachable_pub` — same reasoning as `imsg-broker-client`'s `lib.rs`.
pub use run;
pub use run as run_store;
pub use run as run_sync;
use cratePathArg;
/// Operation parameters for the `contacts` subcommand.
pub