mirror of
https://github.com/DioxusLabs/dioxus
synced 2025-01-23 10:05:03 +00:00
12 lines
210 B
Rust
12 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() {}
|
||
|
}
|