Updated backend dependencies
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-03-20 21:33:18 +01:00
parent 3c8de8279b
commit ed9fd097e9
4 changed files with 585 additions and 486 deletions

View File

@ -136,16 +136,13 @@ pub async fn server_info(client: LibVirtReq) -> HttpResult {
system.refresh_all();
let mut components = Components::new();
components.refresh_list();
components.refresh();
components.refresh(true);
let mut disks = Disks::new();
disks.refresh_list();
disks.refresh();
disks.refresh(true);
let mut networks = Networks::new();
networks.refresh_list();
networks.refresh();
networks.refresh(true);
Ok(HttpResponse::Ok().json(ServerInfo {
hypervisor: client.get_info().await?,