mtgoxml 0.0.3

Tool to download and format the XML data files from Magic: the Gathering Online
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Tool to download and format the XML data files from Magic: the Gathering Online

use log::info;
use mtgoxml::MtgoApplication;

#[tokio::main]
async fn main() -> Result<(), anyhow::Error> {
    env_logger::init();

    let mtgo = MtgoApplication::default().await?;
    info!("Application is {:#?}", mtgo);

    Ok(())
}