aboutsummaryrefslogtreecommitdiff
path: root/crates/server/src/main_loop
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-09-01 16:16:08 +0100
committerAleksey Kladov <[email protected]>2018-09-01 16:16:08 +0100
commite8515fecd7a42870f2979c7900c94b59d935901c (patch)
tree42ef7161eaa642f03e098cab29e7bf629686e07a /crates/server/src/main_loop
parent4268fbeaa1e9f98e033c72afce5dc8333da4b4b7 (diff)
split lib
Diffstat (limited to 'crates/server/src/main_loop')
-rw-r--r--crates/server/src/main_loop/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/server/src/main_loop/mod.rs b/crates/server/src/main_loop/mod.rs
index 75d65dcbf..610aa4264 100644
--- a/crates/server/src/main_loop/mod.rs
+++ b/crates/server/src/main_loop/mod.rs
@@ -26,7 +26,7 @@ enum Task {
26 Notify(RawNotification), 26 Notify(RawNotification),
27} 27}
28 28
29pub(super) fn main_loop( 29pub fn main_loop(
30 root: PathBuf, 30 root: PathBuf,
31 msg_receriver: &mut Receiver<RawMessage>, 31 msg_receriver: &mut Receiver<RawMessage>,
32 msg_sender: &mut Sender<RawMessage>, 32 msg_sender: &mut Sender<RawMessage>,