mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-25 00:12:59 +01:00
18 lines
317 B
Rust
18 lines
317 B
Rust
|
extern crate actix;
|
||
|
extern crate actix_web;
|
||
|
extern crate bytes;
|
||
|
extern crate futures;
|
||
|
extern crate serde;
|
||
|
extern crate serde_json;
|
||
|
extern crate tokio_io;
|
||
|
extern crate tokio_core;
|
||
|
#[macro_use]
|
||
|
extern crate redis_async;
|
||
|
#[macro_use]
|
||
|
extern crate failure;
|
||
|
|
||
|
mod redis;
|
||
|
mod session;
|
||
|
|
||
|
pub use session::RedisSessionBackend;
|