Accidentally removed import path

This commit is contained in:
Jedrzej Stuczynski
2020-02-04 15:18:52 +00:00
parent bed0badc15
commit 441e586915
+1 -1
View File
@@ -67,7 +67,7 @@ impl Notifier {
pub async fn run(self) {
loop {
self.notify();
tokio::delay_for(self.sending_delay).await;
tokio::time::delay_for(self.sending_delay).await;
}
}
}