blob: fb07a4d0dc41380679d706b4f08a87933005fcd4 (
plain)
1
2
3
4
5
6
7
|
use url::Url;
use crate::server::response;
use crate::server::ServerConfig;
pub fn handle(config: &ServerConfig, url: Url) -> Option<response::Response> {
Some(response::invalid_protocol())
}
|