[FIX] Websocket & webserver is now actix, because that should be better

than hyper & axum, i guess we'll see in the long run :},

ToDo: IF THIS WORKS: implement on the iota
This commit is contained in:
Alex Emmet 2026-02-15 00:37:42 +01:00
commit cb7579d86d
7 changed files with 1432 additions and 961 deletions

View file

@ -43,8 +43,7 @@ async fn main() {
} else {
log!(" Users");
}
server::server::start(9187, 9188).await;
log!(" API Server on 9187");
log!(" WS Server on 9188");
let _ = server::server::start(9187).await;
tokio::signal::ctrl_c().await.unwrap();
}