From 6c9b8ad3c9f69b4b2223a06d71e773670c8db90c Mon Sep 17 00:00:00 2001 From: StellarisW Date: Thu, 31 Oct 2024 14:40:43 +0800 Subject: [PATCH] feat(http): add cookie for client --- volo-http/src/client/cookie.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/volo-http/src/client/cookie.rs b/volo-http/src/client/cookie.rs index 03765110..d07a2627 100644 --- a/volo-http/src/client/cookie.rs +++ b/volo-http/src/client/cookie.rs @@ -1,6 +1,8 @@ //! Cookie implementation //! //! This module provides [`CookieLayer`] for extracting and setting cookies. +//! +//! See [`CookieLayer`] for more details. use motore::{layer::Layer, Service}; use parking_lot::RwLock;