We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5886cf7 commit c326b9eCopy full SHA for c326b9e
chapter2/src/2_4_4/server.rs
@@ -1,5 +1,5 @@
1
-use std::net::{TcpStream, TcpListener};
2
-use std::io::{Write, BufReader, BufRead};
+use std::io::{BufRead, BufReader, Write};
+use std::net::{TcpListener, TcpStream};
3
4
fn get_operation(stream: &mut TcpStream) -> std::io::Result<()> {
5
let body = "HTTP server sample";
0 commit comments