1pub mod httpserver; 2 3enum HttpMethod { 4 GET, 5 HEAD 6} 7 8struct HttpRequest { 9 method: HttpMethod 10} 11 12struct HttpResponse { 13 14} 15 16#[cfg(test)] 17mod tests { 18 use super::*; 19 20 #[test] 21 fn it_works() { 22 23 } 24}