Cleanup warnings
Lots of code paths that dont exist right now. This suppresses the warnings til I come back and finish implementing everything
This commit is contained in:
+5
-1
@@ -1,3 +1,7 @@
|
||||
// suppress warnings from unimplemented paths
|
||||
// remove once actually done
|
||||
#![allow(dead_code)]
|
||||
|
||||
mod client;
|
||||
mod config;
|
||||
mod connection;
|
||||
@@ -178,7 +182,7 @@ async fn main() -> ExitCode {
|
||||
// Global connections
|
||||
let (close_send,close_recv) = broadcast::channel(1);
|
||||
let (message_send,message_recv) = broadcast::channel(128);
|
||||
let (message_ack_send,message_ack_recv) = mpsc::channel(128);
|
||||
let (message_ack_send,_message_ack_recv) = mpsc::channel(128);
|
||||
|
||||
debug!("Setting ctrl-c handler");
|
||||
match ctrlc_async::set_async_handler(
|
||||
|
||||
Reference in New Issue
Block a user