Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Myestery committed Dec 16, 2024
1 parent f34a878 commit 490c0c8
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions golem-ui-service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,3 +205,17 @@ impl UiService {
Ok(())
}
}

#[tokio::main]
pub async fn main() {
let args = CliArgs::parse();

let res = UiService::new(args)
.run()
.await;

match res {
Err(e) => println!("Error starting UI: {}", e),
Ok(_) => println!("UI Server stopped"),
}
}

0 comments on commit 490c0c8

Please sign in to comment.