From 43407261980e987fd08a91c93aa38567b0f47a32 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Fri, 29 Dec 2017 01:12:24 -0800 Subject: [PATCH] update readme --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 53cbcc354..7fdc1297d 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,10 @@ Note that whatever you write into your session is visible by the user (but not m Constructor panics if key length is less than 32 bytes. ```rust,ignore -# extern crate actix; -# extern crate actix_web; -# use actix_web::*; +extern crate actix_web; +extern crate actix_redis; + +use actix_web::*; use actix_web::middleware::SessionStorage; use actix_redis::RedisSessionBackend;