From 898d4b32736e0b6645558c49789c6cf2fa245e94 Mon Sep 17 00:00:00 2001 From: FabianLars Date: Wed, 16 Aug 2023 12:19:27 +0200 Subject: [PATCH] cargo fmt --- plugins/deep-link/src/commands.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/deep-link/src/commands.rs b/plugins/deep-link/src/commands.rs index 8d0d79c1..4b228e4c 100644 --- a/plugins/deep-link/src/commands.rs +++ b/plugins/deep-link/src/commands.rs @@ -2,15 +2,15 @@ // SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: MIT -use tauri::{AppHandle, command, Runtime, Window, State}; +use tauri::{command, AppHandle, Runtime, State, Window}; use crate::{DeepLink, Result}; #[command] pub(crate) async fn get_current( - _app: AppHandle, - _window: Window, - deep_link: State<'_, DeepLink> + _app: AppHandle, + _window: Window, + deep_link: State<'_, DeepLink>, ) -> Result>> { - deep_link.get_current() + deep_link.get_current() }