1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-01-24 07:43:49 +01:00

11 lines
348 B
Rust
Raw Normal View History

2019-03-17 13:47:20 -07:00
//! Actix actors integration for Actix web framework
mod context;
2019-03-17 22:02:03 -07:00
mod ws;
2019-03-17 13:47:20 -07:00
pub use self::context::HttpContext;
2019-03-17 22:02:03 -07:00
pub use self::ws::{ws_handshake, ws_start, WebsocketContext};
pub use actix_http::ws::CloseCode as WsCloseCode;
pub use actix_http::ws::ProtocolError as WsProtocolError;
pub use actix_http::ws::{Frame as WsFrame, Message as WsMessage};