fix: escape path-prefix/url-prefix different

This commit is contained in:
sigoden
2022-06-06 08:00:26 +08:00
parent ce154d9ebc
commit b0cc901416
3 changed files with 11 additions and 11 deletions

View File

@@ -10,7 +10,7 @@ pub type BoxResult<T> = Result<T, Box<dyn std::error::Error>>;
use std::env;
use std::io::Write;
use crate::args::{encode_uri, matches, Args};
use crate::args::{matches, Args};
use crate::server::serve;
#[tokio::main]