sync-box 0.1.2

一个高效的目录同步工具,支持实时监听文件变化并自动同步,可通过命令行直接使用或通过配置文件管理多个同步任务。
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! 工具函数模块
//!
//! 包含各种通用的工具函数,如格式化、验证等

pub mod format;
pub mod progress;

// 可选:重新导出常用函数,方便调用
pub use format::{format_file_size};
pub use progress::create_progress_bar;