//! Platform-abstracted process management for the LSP daemon.
#[cfg(unix)]modunix;#[cfg(windows)]modwindows;#[cfg(unix)]pub(super)useunix::{configure_daemon_spawn, find_binary_on_path, process_alive};#[cfg(windows)]pub(super)usewindows::{configure_daemon_spawn, find_binary_on_path, process_alive};