myhomelab 0.1.1

Rust application to monitor things around home
Documentation
1
2
3
4
5
6
7
8
use myhomelab::{ApplicationConfig, Configurable};

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let config = ApplicationConfig::from_env()?;
    let app = config.build().await?;
    app.run().await
}