Skip to main content

hazelnut/
lib.rs

1//! Hazelnut - Terminal-based automated file organizer
2//!
3//! A Hazel-like file organization tool with a TUI interface.
4
5pub mod app;
6pub mod config;
7pub mod ipc;
8pub mod rules;
9pub mod theme;
10pub mod watcher;
11
12pub use config::Config;
13pub use rules::{Action, Condition, Rule, RuleEngine};
14pub use theme::Theme;
15pub use watcher::Watcher;