2019-07-17 11:08:30 +02:00
|
|
|
#![allow(clippy::borrow_interior_mutable_const)]
|
2019-03-17 21:47:20 +01:00
|
|
|
//! Actix actors integration for Actix web framework
|
|
|
|
mod context;
|
2019-03-18 06:11:50 +01:00
|
|
|
pub mod ws;
|
2019-03-17 21:47:20 +01:00
|
|
|
|
|
|
|
pub use self::context::HttpContext;
|