added async stuff not pushed in the last commit

This commit is contained in:
2023-03-12 21:17:51 +01:00
parent cc77e4ef9c
commit f0007394c3
3 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
use super::executions::build_execution::BuildExecution;
pub fn build() -> () {
pub async fn build() -> () {
let mut build_execution = BuildExecution::new();
build_execution.execute().expect("build failed")
build_execution.execute().await.expect("build failed")
}