pub mod category;
pub mod error;
pub mod html;
mod path_util;
pub mod scan;
pub mod tree;
pub use category::FileCategory;
pub use error::ScanError;
pub use html::generate_html;
pub use path_util::clean_path;
pub use scan::{ScanConfig, ScanProgress, scan_directory};
pub use tree::{DirNode, EChartsNode, FileTree, NodeId, NodeKind, TreeNode, build_file_tree};