1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-02-22 20:13:17 +01:00
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;