From 0ad594277e61e9fb41b2e470c34cff7534d6c780 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 14 Sep 2025 13:12:27 +0800 Subject: Fixed codes by Zed --- crates/utils/tcp_connection/src/handle.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'crates/utils/tcp_connection/src/handle.rs') diff --git a/crates/utils/tcp_connection/src/handle.rs b/crates/utils/tcp_connection/src/handle.rs index de7815d..ab3a5ff 100644 --- a/crates/utils/tcp_connection/src/handle.rs +++ b/crates/utils/tcp_connection/src/handle.rs @@ -1,12 +1,9 @@ use tokio::net::TcpStream; pub trait ClientHandle { - fn process(stream: TcpStream); } pub trait ServerHandle { - fn process(stream: TcpStream); } - -- cgit