1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-26 02:19:22 +02:00

Misc tidy up (#400)

This commit is contained in:
John Vandenberg
2024-02-14 09:19:29 +08:00
committed by GitHub
parent 2e0cbb8bbb
commit daffc24245
6 changed files with 9 additions and 6 deletions

View File

@ -38,7 +38,7 @@ To start using sessions in your Actix Web application you must register [`Sessio
```rust
use actix_web::{web, App, HttpServer, HttpResponse, Error};
use actix_session::{Session, SessionMiddleware, storage::RedisActorSessionStore};
use actix_session::{Session, SessionMiddleware, storage::RedisSessionStore};
use actix_web::cookie::Key;
#[actix_web::main]