feat: log exit tasks to console (#1363)

This commit is contained in:
iTrooz
2023-10-11 22:38:54 +02:00
committed by GitHub
parent afa149f2db
commit b908965048
4 changed files with 15 additions and 4 deletions

View File

@@ -12,6 +12,11 @@ namespace hex::init {
bool async;
};
/**
* @brief Runs the exit tasks and print them to console
*/
void runExitTasks();
std::vector<Task> getInitTasks();
std::vector<Task> getExitTasks();
}