Make Service.interrupt async

This commit is contained in:
dasha_uwu
2025-08-24 02:30:47 +05:00
parent 3a1649bcaf
commit f51a7b12b5
5 changed files with 8 additions and 8 deletions

View File

@@ -100,13 +100,13 @@ impl crate::Service for Service {
}
//TODO: not unwind safe
self.interrupt();
self.interrupt().await;
self.console_auto_stop().await;
Ok(())
}
fn interrupt(&self) {
async fn interrupt(&self) {
#[cfg(feature = "console")]
self.console.interrupt();