summaryrefslogtreecommitdiff
path: root/src/clock.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/clock.rs')
-rw-r--r--src/clock.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/clock.rs b/src/clock.rs
index d162fc0..81ecede 100644
--- a/src/clock.rs
+++ b/src/clock.rs
@@ -8,10 +8,10 @@ use chrono::Utc;
pub type DateTime = chrono::DateTime<chrono::Utc>;
-/// Extractor that provides the "current time" for a request. This time is calculated
-/// once per request, even if the extractor is used in multiple places. This requires
-/// the [middleware] function to be installed with [axum::middleware::from_fn] around
-/// the current route.
+// Extractor that provides the "current time" for a request. This time is calculated
+// once per request, even if the extractor is used in multiple places. This requires
+// the [middleware] function to be installed with [axum::middleware::from_fn] around
+// the current route.
#[derive(Clone)]
pub struct RequestedAt(pub DateTime);
@@ -53,8 +53,8 @@ impl std::ops::Deref for RequestedAt {
}
}
-/// Computes a canonical "requested at" time for each request it wraps. This
-/// time can be recovered using the [RequestedAt] extractor.
+// Computes a canonical "requested at" time for each request it wraps. This
+// time can be recovered using the [RequestedAt] extractor.
pub async fn middleware(mut req: Request, next: Next) -> Result<Response, StatusCode> {
let now = RequestedAt::now();
req.extensions_mut().insert(now);