]> code.octet-stream.net Git - netwatcher/blob - src/watch_win.rs
Split out list and watch implementations
[netwatcher] / src / watch_win.rs
1 use crate::Update;
2
3 pub struct WatchHandle;
4
5 pub fn watch_interfaces<F: FnMut(Update)>(callback: F) -> WatchHandle {
6 drop(callback);
7 WatchHandle
8 }