wavecraft_dev_server/reload/mod.rs
1//! Hot-reload infrastructure for `wavecraft start`
2//!
3//! This module provides file watching, build guarding, and rebuild pipeline
4//! components for hot-reloading Rust plugins during development.
5
6pub mod guard;
7pub mod rebuild;
8pub mod watcher;
9
10pub use guard::BuildGuard;
11pub use rebuild::{RebuildCallbacks, RebuildPipeline};
12pub use watcher::{FileWatcher, WatchEvent};