summaryrefslogtreecommitdiffhomepage
path: root/talpid-types/src/lib.rs
blob: 34581f074aafdf0dabfba07da3229047ec4c8653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(target_os = "android")]
pub mod android;
pub mod net;
pub mod tunnel;

#[cfg(target_os = "linux")]
pub mod cgroup;

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

mod error;
pub use error::*;