fix: add missing Clone derive and clean up unused imports

Made-with: Cursor
This commit is contained in:
cottongin
2026-03-10 22:02:58 -04:00
parent 1e2b6d427f
commit ec93de9780
2 changed files with 3 additions and 3 deletions

View File

@@ -1,9 +1,9 @@
use tokio::io::{AsyncBufReadExt, AsyncWriteExt, BufReader};
use tokio::net::UnixListener;
use tokio::sync::{mpsc, oneshot};
use tracing::{info, warn};
use tracing::info;
use crate::events::{BridgeStatus, ControlCommand};
use crate::events::ControlCommand;
#[derive(Debug, PartialEq)]
enum ParsedCommand {

View File

@@ -3,7 +3,7 @@ use std::time::Duration;
use futures_util::StreamExt;
use irc::client::prelude::*;
use tokio::sync::mpsc;
use tracing::{error, info, warn};
use tracing::{error, info};
use crate::config::IrcConfig;
use crate::events::{BridgeEvent, Source};