summaryrefslogtreecommitdiff
path: root/crates/utils/tcp_connection/src/handle.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/utils/tcp_connection/src/handle.rs')
-rw-r--r--crates/utils/tcp_connection/src/handle.rs3
1 files changed, 0 insertions, 3 deletions
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<RequestServer> {
-
fn process(stream: TcpStream);
}
pub trait ServerHandle<RequestClient> {
-
fn process(stream: TcpStream);
}
-