Documentation
/*!
这是为 [antora](https://docs.antora.org/) 开发的命令行工具,目前仍在开发中

# 示例

```
use wantora::run;

fn main() {
    //执行命令
    run();
}

```


 */

pub mod utils;

pub use utils::{resolve_args, MyConfig, MyCommand};

pub mod runner;

pub use runner::run;