trying different stöff

This commit is contained in:
2025-08-09 17:52:01 +02:00
parent a8cfbbf766
commit cfd9fef3e9
6 changed files with 17 additions and 21 deletions

View File

@@ -1,12 +1,12 @@
/// WatcherAgent - A Rust-based system monitoring agent
/// This agent collects hardware metrics and sends them to a backend server.
/// It supports CPU, GPU, RAM, disk, and network metrics.
mod api;
mod hardware;
mod metrics;
mod models;
pub mod api;
pub mod hardware;
pub mod metrics;
pub mod models;
use crate::hardware::gpu;
pub use crate::hardware::gpu;
use anyhow::Result;
use std::error::Error;