1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-12-03 20:02:12 +01:00
actix-web/actix-web-actors/src/lib.rs

10 lines
180 B
Rust
Raw Normal View History

2021-02-10 13:10:03 +01:00
//! Actix actors support for Actix Web.
2021-12-08 07:09:56 +01:00
#![deny(rust_2018_idioms, nonstandard_style)]
#![warn(future_incompatible)]
2019-03-17 21:47:20 +01:00
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;