Files
tkmind_go/crates/goose/src/subprocess.rs
T
2025-11-07 22:35:26 -05:00

11 lines
254 B
Rust

use tokio::process::Command;
#[cfg(windows)]
const CREATE_NO_WINDOW_FLAG: u32 = 0x08000000;
#[allow(unused_variables)]
pub fn configure_command_no_window(command: &mut Command) {
#[cfg(windows)]
command.creation_flags(CREATE_NO_WINDOW_FLAG);
}