usestd::ffi::OsStr;pubmodblocking;/// Execute commands on the Windows platform,
/// without opening a window to maintain consistency with other system behaviors.
pubstructCommand;implCommand{#[allow(clippy::new_ret_no_self)]pubfnnew<S:AsRef<OsStr>>(program: S)->async_process::Command{blocking::Command::new(program).into()}}