1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-04-18 11:15:20 +02:00
2020-09-10 14:46:35 +01:00

10 lines
193 B
Rust

//! Actix actors integration for Actix web framework
#![deny(rust_2018_idioms)]
#![allow(clippy::borrow_interior_mutable_const)]
mod context;
pub mod ws;
pub use self::context::HttpContext;