passivized_test_support 0.0.11

Miscellaneous items used to test other crates. Not a general purpose testing crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::process::ExitCode;
use log::info;

#[tokio::main]
async fn main() -> ExitCode {
    passivized_test_support::cli::run(run).await
}

async fn run() -> Result<(), String> {
    info!("The answer is 87.");

    Ok(())
}