dioxus/packages/cli/src/watch.rs
2021-01-19 08:50:56 -05:00

11 lines
210 B
Rust

pub struct Watcher {}
impl Watcher {
// Spawns a new notify instance that alerts us of changes
pub fn new() -> Self {
Self {}
}
/// Subsribe to the watcher
pub fn subscribe() {}
}