mirror of https://github.com/fafhrd91/actix-web
11 lines
348 B
Rust
11 lines
348 B
Rust
//! Actix actors integration for Actix web framework
|
|
mod context;
|
|
mod ws;
|
|
|
|
pub use self::context::HttpContext;
|
|
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};
|