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 b2a3a3d commit 8c28eea
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 @@ -65,7 +65,7 @@ use crate::{
/// };
///
/// async fn upload(
/// mut multipart: Multipart<'static>,
/// mut multipart: Multipart,
/// ) -> Result<StatusCode, MultipartRejectionError> {
/// while let Some(field) = multipart.next_field().await? {
/// todo!()
Expand Down

0 comments on commit 8c28eea

Please sign in to comment.