dioxus/packages/cli/src/watch.rs

12 lines
210 B
Rust
Raw Normal View History

2021-01-16 04:32:53 +00:00
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() {}
}