allows scrolling backwards through history

This commit is contained in:
2025-01-05 10:52:09 -05:00
parent 32fcbbd916
commit 2cb1eec404
11 changed files with 214 additions and 87 deletions

View File

@@ -6,7 +6,7 @@ use crate::http::api::setup_api;
use crate::http::websocket::setup_websocket;
use crate::telemetry::management_service::TelemetryManagementService;
use actix_web::{web, App, HttpServer};
use log::{error, info};
use log::info;
use std::sync::Arc;
use tokio_util::sync::CancellationToken;
@@ -29,7 +29,5 @@ pub async fn setup(
.run()
.await?;
error!("http setup end");
Ok(())
}