2001lwy
Results
1
issues of
2001lwy
use actix::{Actor, StreamHandler}; use actix_web::{web, App, Error, HttpRequest, HttpResponse, HttpServer}; use actix_web_actors::ws; /// Define HTTP actor struct MyWs; impl Actor for MyWs { type Context = ws::WebsocketContext; } /// Handler...