1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-01-23 23:34:35 +01:00

7 lines
164 B
Rust
Raw Normal View History

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;