mgt 0.1.1

Command line tool to analyze the WildFly management model.
1
2
3
4
5
6
7
8
use anyhow::Result;
use wildfly_meta::update_all;

pub async fn update() -> Result<()> {
    let result = tokio::task::spawn_blocking(update_all).await??;
    println!("{}", result.summary());
    Ok(())
}