Skip to main content

soma_mcp_client/process/
windows.rs

1#[derive(Debug, Clone, PartialEq, Eq)]
2pub struct WindowsJobCleanup {
3    pub kill_on_drop: bool,
4}
5
6impl Default for WindowsJobCleanup {
7    fn default() -> Self {
8        Self { kill_on_drop: true }
9    }
10}
11
12#[must_use]
13pub fn job_cleanup_required() -> bool {
14    true
15}
16
17#[cfg(test)]
18#[path = "windows_tests.rs"]
19mod tests;