mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-23 11:36:13 +02:00
16 lines
361 B
Rust
16 lines
361 B
Rust
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
use tauri::{AppHandle, command, Runtime, Window};
|
|
|
|
use crate::Result;
|
|
|
|
#[command]
|
|
pub(crate) async fn execute<R: Runtime>(
|
|
_app: AppHandle<R>,
|
|
_window: Window<R>,
|
|
) -> Result<String> {
|
|
Ok("success".to_string())
|
|
}
|