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:
2026-05-31 14:22:42 -07:00
parent 205309eaa3
commit f1de605d19
3 changed files with 39 additions and 35 deletions
+5 -1
View File
@@ -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(