From 7959cc91c734572114a748246463005086d16f7e Mon Sep 17 00:00:00 2001 From: Johnpaul Date: Tue, 17 Dec 2024 16:18:23 +0100 Subject: [PATCH] cargo fmt --- golem-cli/src/command.rs | 2 +- golem-cli/src/command/ui.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/golem-cli/src/command.rs b/golem-cli/src/command.rs index 84eb6f0ee..309846058 100644 --- a/golem-cli/src/command.rs +++ b/golem-cli/src/command.rs @@ -37,9 +37,9 @@ use golem_common::uri::oss::uri::ComponentUri; use golem_wasm_rpc_stubgen::App; use plugin::PluginSubcommand; use profile::{ProfileSubCommand, UniversalProfileAdd}; -use ui::UiCommand; use std::future::Future; use std::path::PathBuf; +use ui::UiCommand; use worker::WorkerSubcommand; pub trait ComponentRefSplit { diff --git a/golem-cli/src/command/ui.rs b/golem-cli/src/command/ui.rs index 17043c704..ab658ff89 100644 --- a/golem-cli/src/command/ui.rs +++ b/golem-cli/src/command/ui.rs @@ -51,7 +51,7 @@ impl UiCommand { }); service.run().await.map_err(|e| GolemError(e.to_string()))?; - + Ok(GolemResult::Str("UI server stopped".to_string())) } -} \ No newline at end of file +}