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