clankerdiff_watch/lib.rs
1pub mod file_watcher;
2
3mod error;
4mod filter;
5mod repository_watcher;
6
7pub use error::WatchError;
8pub use file_watcher::{FileWatchError, FileWatcher, NotifyFileWatcher};
9pub use repository_watcher::{
10 RepositoryHandle, RepositoryHandleError, RepositoryRequest, RepositoryState, RepositoryWatcher,
11 WatchOptions,
12};