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