mirror of
https://github.com/DioxusLabs/dioxus
synced 2025-01-07 18:28:52 +00:00
11 lines
210 B
Rust
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() {}
|
|
}
|