mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-30 18:44:35 +01:00
10 lines
180 B
Rust
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;
|