summaryrefslogtreecommitdiffhomepage
path: root/src/lib.rs
blob: fec2e1da5e1a3db8f8ed502d840f4aef86ef2e0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![deny(missing_docs)]

//! The core components of the talpidaemon VPN client.

/// Working with processes.
pub mod process;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {}
}