aboutsummaryrefslogtreecommitdiffstats
path: root/src/wireguard/types/mod.rs
diff options
context:
space:
mode:
authorMathias Hall-Andersen <mathias@hall-andersen.dk>2019-10-23 12:08:35 +0200
committerMathias Hall-Andersen <mathias@hall-andersen.dk>2019-10-23 12:08:35 +0200
commitee3599d5507ceee23ef3382dbda9de8e73c54a00 (patch)
treed681a3f8a5a2d5e7bea779acecd1fc0798285d9e /src/wireguard/types/mod.rs
parentWork on platform specific code (Linux) (diff)
downloadwireguard-rs-ee3599d5507ceee23ef3382dbda9de8e73c54a00.tar.xz
wireguard-rs-ee3599d5507ceee23ef3382dbda9de8e73c54a00.zip
Moved IO traits into platform module
Diffstat (limited to 'src/wireguard/types/mod.rs')
-rw-r--r--src/wireguard/types/mod.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/wireguard/types/mod.rs b/src/wireguard/types/mod.rs
deleted file mode 100644
index 20a1238..0000000
--- a/src/wireguard/types/mod.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-mod endpoint;
-mod keys;
-
-pub mod bind;
-pub mod tun;
-
-#[cfg(test)]
-pub mod dummy;
-
-pub use endpoint::Endpoint;
-pub use keys::{Key, KeyPair};