1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-03-03 10:01:57 +00:00
actix-web/actix-web-actors/src/lib.rs

10 lines
180 B
Rust
Raw Normal View History

2021-02-10 12:10:03 +00:00
//! Actix actors support for Actix Web.
2020-09-10 13:46:35 +00:00
#![deny(rust_2018_idioms)]
#![allow(clippy::borrow_interior_mutable_const)]
2019-03-17 20:47:20 +00:00
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;