1
0
mirror of https://github.com/actix/examples synced 2025-06-29 02:10:36 +02:00

Upgrade websocket-chat-broker example to actix V3 and actix-broker 3.1 (#383)

Co-authored-by: Madis Jullinen <mjullinen@twilio.com>
This commit is contained in:
cirm
2020-11-05 21:11:14 +02:00
committed by GitHub
parent 542e6dbcdd
commit 25d34ee4e1
2 changed files with 7 additions and 7 deletions

View File

@ -17,7 +17,7 @@ async fn chat_route(
ws::start(WsChatSession::default(), &req, stream)
}
#[actix_rt::main]
#[actix_web::main]
async fn main() -> std::io::Result<()> {
env_logger::from_env(env_logger::Env::default().default_filter_or("info")).init();