Skip to content

Commit

Permalink
feat(http): add multipart for server
Browse files Browse the repository at this point in the history
  • Loading branch information
StellarisW committed Oct 23, 2024
1 parent 8c28eea commit 3eaad84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion volo-http/src/server/utils/multipart.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
//! };
//!
//! async fn upload(
//! mut multipart: Multipart<'static>,
//! mut multipart: Multipart,
//! ) -> Result<StatusCode, MultipartRejectionError> {
//! while let Some(field) = multipart.next_field().await? {
//! let name = field.name().unwrap();
Expand Down

0 comments on commit 3eaad84

Please sign in to comment.