inotify-based folder watcher using the notify crate that detects new image files, ignores non-image files, and supports start/stop lifecycle. WatchFolder config struct for preset-linked watched directories.
17 lines
272 B
Rust
17 lines
272 B
Rust
pub mod config;
|
|
pub mod discovery;
|
|
pub mod encoder;
|
|
pub mod error;
|
|
pub mod executor;
|
|
pub mod loader;
|
|
pub mod operations;
|
|
pub mod pipeline;
|
|
pub mod preset;
|
|
pub mod storage;
|
|
pub mod types;
|
|
pub mod watcher;
|
|
|
|
pub fn version() -> &'static str {
|
|
env!("CARGO_PKG_VERSION")
|
|
}
|