1 2 3 4 5 6 7 8 9 10 11 12 13
// SPDX-License-Identifier: Apache-2.0 // Copyright (c) 2025 rhythmcache // https://github.com/rhythmcache/payload-dumper-rust mod cli; use cli::entry::run; fn main() { if let Err(e) = run() { eprintln!("Error: {}", e); std::process::exit(1); } }