1
0
mirror of https://github.com/actix/examples synced 2025-06-26 09:17:41 +02:00

add session ttl customization example

This commit is contained in:
Rob Ede
2022-08-28 18:39:28 +01:00
parent d259177eab
commit fcd013fcde
18 changed files with 84 additions and 60 deletions

View File

@ -24,9 +24,7 @@ async fn main() -> std::io::Result<()> {
#[cfg(test)]
mod tests {
use actix_web::body::to_bytes;
use actix_web::dev::Service;
use actix_web::{http, test, web, App, Error};
use actix_web::{body::to_bytes, dev::Service, http, test, web, App, Error};
use super::*;

View File

@ -18,10 +18,14 @@
//!
//! Check [user guide](https://actix.rs/docs/application/#state) for more info.
use std::cell::Cell;
use std::io;
use std::sync::atomic::{AtomicUsize, Ordering};
use std::sync::Mutex;
use std::{
cell::Cell,
io,
sync::{
atomic::{AtomicUsize, Ordering},
Mutex,
},
};
use actix_web::{
middleware,