diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 37a3226..fb7e321 100644 --- a/src/main.rs +++ b/src/main.rs @@ -197,7 +197,7 @@ fn configure_app(app: App<MiniserveConfig>) -> App<MiniserveConfig> { let random_route = app.state().random_route.clone().unwrap_or_default(); let full_route = format!("/{}", random_route); - //allow file upload + // Allow file upload let app = app.resource("/upload", |r| { r.method(Method::POST).f(file_upload::upload_file) }); |