fix: replace todo!() with Ok(())

This commit is contained in:
Tamipes 2025-12-06 20:04:14 +01:00
parent 594e91b8a1
commit 7461b8ea30

View file

@ -41,5 +41,5 @@ pub async fn send_disconnect(
.await
.map_err(|_| "failed to *send* disconnect packet")?;
client_stream.flush().await.map_err(|e| e.to_string())?;
todo!()
Ok(())
}