1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-02-23 04:23:02 +01:00

10 lines
180 B
Rust
Raw Normal View History

2021-02-10 12:10:03 +00:00
//! Actix actors support for Actix Web.
2021-12-08 06:09:56 +00:00
#![deny(rust_2018_idioms, nonstandard_style)]
#![warn(future_incompatible)]
2019-03-17 13:47:20 -07:00
mod context;
2019-03-17 22:11:50 -07:00
pub mod ws;
2019-03-17 13:47:20 -07:00
pub use self::context::HttpContext;