aboutsummaryrefslogtreecommitdiff
path: root/karld/src/interface/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'karld/src/interface/mod.rs')
-rw-r--r--karld/src/interface/mod.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/karld/src/interface/mod.rs b/karld/src/interface/mod.rs
deleted file mode 100644
index 38c9895..0000000
--- a/karld/src/interface/mod.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-use std::thread;
-mod unix;
-mod websocket;
-
-pub fn start() {
- #[cfg(feature = "unix")]
- thread::spawn(|| unix::run());
- #[cfg(feature = "websocket")]
- thread::spawn(|| websocket::run());
-}