use url::Url; use crate::server::response; use crate::server::ServerConfig; pub fn handle(config: &ServerConfig, url: Url) -> Option { Some(response::invalid_protocol()) }