summaryrefslogtreecommitdiffstats
path: root/src/app/process_killer.rs
blob: c10958504b33fc38e496093e73fbcc53145664ab (plain)
1
2
3
4
5
6
7
//! This file is meant to house (OS specific) implementations on how to kill processes.

#[cfg(target_os = "windows")]
pub(crate) mod windows;

#[cfg(target_family = "unix")]
pub(crate) mod unix;