websocket to web

This commit is contained in:
2024-10-20 19:14:33 -07:00
parent 51af825b27
commit 8e4a94f8c5
8 changed files with 274 additions and 12 deletions

View File

@@ -26,7 +26,7 @@ pub async fn setup() -> Result<(), Box<dyn Error>> {
let grpc_server = grpc::setup(cancellation_token.clone(), tlm.clone())?;
let result = http::setup(tlm).await;
let result = http::setup(cancellation_token.clone(), tlm).await;
cancellation_token.cancel();
result?;
grpc_server.await?;