move-idl-parse 0.4.0

CLI for parsing an IDL from a Move package.
Documentation
1
2
3
4
5
6
7
8
use anyhow::*;
use clitool::CliTool;
use move_idl_parse::IDLParseTool;

#[tokio::main]
async fn main() -> Result<()> {
    IDLParseTool::execute_main().await
}