//! Windows stub for [`super::detach`].
//!//! Real implementation will use `DETACHED_PROCESS` to relaunch
//! `vik run` without `-d`.
usestd::path::Path;usesuper::DetachError;pubfndetach(_log_dir:&Path)->Result<(), DetachError>{tracing::error!("vik run -d is not supported on Windows yet");Err(DetachError::PlatformUnsupported)}