1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-30 18:44:35 +01:00
actix-web/actix-web-actors/src/lib.rs
2021-12-08 06:09:56 +00:00

10 lines
180 B
Rust

//! Actix actors support for Actix Web.
#![deny(rust_2018_idioms, nonstandard_style)]
#![warn(future_incompatible)]
mod context;
pub mod ws;
pub use self::context::HttpContext;