add on_exit todo so that the waku node is stopped correctly

This commit is contained in:
Ivan Folgueira Bande 2024-12-24 12:51:16 +01:00
parent cc76ac0cb5
commit 35bacf4316
No known key found for this signature in database
GPG Key ID: 3C117481F89E24A7

View File

@ -319,6 +319,10 @@ impl eframe::App for TicTacToeApp<Running> {
}
});
}
fn on_exit(&mut self, _gl: Option<&eframe::glow::Context>) {
// TODO: implement the cleanup an proper stop of waku node
}
}
#[tokio::main]