rucora-tools 0.1.0

Built-in tools for rucora (shell, file, HTTP, git, web search, etc.)
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! 系统工具模块
//!
//! 提供系统命令执行、时间获取等功能

pub mod cmd_exec;
pub mod datetime;
pub mod shell;

pub use cmd_exec::CmdExecTool;
pub use datetime::DatetimeTool;
pub use shell::ShellTool;