cdk-signatory 0.17.3

CDK signatory default implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Signatory Binary

#[cfg(not(target_arch = "wasm32"))]
mod cli;

fn main() {
    #[cfg(target_arch = "wasm32")]
    println!("Not supported in wasm32");

    #[cfg(not(target_arch = "wasm32"))]
    {
        use tokio::runtime::Runtime;
        let rt = Runtime::new().expect("Runtime created");
        rt.block_on(async {
            cli::cli_main().await.expect("cli error");
        });
    }
}