anza-xtask 0.2.0

Blockchain, Rebuilt for Scale
Documentation
1
2
3
4
5
6
7
8
9
10
use {
    anyhow::Result,
    log::{debug, info},
};

pub fn run() -> Result<()> {
    debug!("DEBUG MODE");
    info!("Hello!");
    Ok(())
}