waterui_cli/debug/
mod.rs

1//! Hot reload and debugging utilities for `WaterUI` CLI.
2
3mod crash;
4mod file_watcher;
5pub mod hot_reload;
6mod runner;
7
8pub use crash::*;
9pub use file_watcher::FileWatcher;
10pub use hot_reload::{BuildManager, DEFAULT_PORT, HotReloadServer};
11pub use runner::{HotReloadEvent, HotReloadRunner};