wang_utils_command/
lib.rs

1//! 命令行相关工具
2#![cfg_attr(docsrs, feature(doc_cfg))]
3
4extern crate self as wang_utils_command;
5pub mod execute_async;
6
7pub mod prelude {
8    pub use crate::execute_async::execute_async;
9}