log_watcher/
lib.rs

1pub mod cli;
2pub mod config;
3pub mod highlighter;
4pub mod matcher;
5pub mod notifier;
6pub mod utils;
7pub mod watcher;
8
9// 🔐 SSH key signing enabled - much more reliable!
10
11pub use cli::Args;
12pub use config::Config;
13pub use highlighter::Highlighter;
14pub use matcher::Matcher;
15pub use notifier::Notifier;
16pub use watcher::LogWatcher;