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 24, 2024
1 parent c4ceb7e commit 80d948b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion volo-http/src/utils/cookie.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl CookieJar {
/// cookie_jar.add_original(("foo", "bar"));
/// cookie_jar.add_original(("foo1", "bar1"))
/// ```
pub fn add_original<C>(&mut self, cookie: C)
pub(crate) fn add_original<C>(&mut self, cookie: C)
where
C: Into<Cookie<'static>>,
{
Expand Down

0 comments on commit 80d948b

Please sign in to comment.