fix: escape filename (#21)

close #19
This commit is contained in:
sigoden
2022-06-06 06:51:35 +08:00
committed by GitHub
parent a0b413ef30
commit f138915f20
5 changed files with 27 additions and 7 deletions

View File

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