From cacb888b94e6a4773dff5c4447c51174b6e30889 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Am=C3=A9d=C3=A9e=20d=27Aboville?= Date: Thu, 7 May 2026 14:06:30 +0200 Subject: [PATCH] Fix doctest to make CI pass --- src/config.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config.rs b/src/config.rs index 47416be..352a435 100644 --- a/src/config.rs +++ b/src/config.rs @@ -824,6 +824,7 @@ impl SessionConfig { /// # Examples /// ```rust /// use axum_session::SessionConfig; + /// use chrono::Duration; /// /// let config = SessionConfig::default().with_thread_sleep_duration(Duration::try_minutes(5).unwrap_or_default()); /// ```