diff options
author | Aleksey Kladov <[email protected]> | 2018-09-01 16:16:08 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-09-01 16:16:08 +0100 |
commit | e8515fecd7a42870f2979c7900c94b59d935901c (patch) | |
tree | 42ef7161eaa642f03e098cab29e7bf629686e07a /crates/server/src/main_loop | |
parent | 4268fbeaa1e9f98e033c72afce5dc8333da4b4b7 (diff) |
split lib
Diffstat (limited to 'crates/server/src/main_loop')
-rw-r--r-- | crates/server/src/main_loop/mod.rs | 2 |
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 | ||
29 | pub(super) fn main_loop( | 29 | pub 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>, |