- move: null string to utils

This commit is contained in:
2024-12-13 14:32:07 -05:00
parent 51e2fef9df
commit 444e69294c
6 changed files with 5 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
use crate::handlers::null_string::NullTerminatedString;
use utils::null_string::NullTerminatedString;
use crate::packet::{send_packet, Packet, PacketPayload};
use crate::packet_type::PacketType;
use crate::packets::cli_char_list_req::CliCharListReq;
@@ -18,4 +18,4 @@ pub(crate) async fn handle_char_list_req(stream: &mut TcpStream, packet: Packet)
debug!("{:?}", request);
Ok(())
}
}