pwr 0.2.2

Check power supplies of a system
Documentation
1
2
3
4
5
6
use anyhow::{Context, Result};

pub fn main() -> Result<()> {
    pretty_env_logger::init();
    pwr::run().context("An error occured".to_string())
}