mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
* fix: CEF CI * fmt * update to rust 1.88, edition 2024 * install x86_64-apple-darwin * linux clippy * fix --all-features * more all-features fixes * install x86 apple * fix windows * fix doc tests * skip --all-featuress test for android and ios * more clippy fixes * install target * fix build, clippy * export cef for tests * pin version * fix arg
28 lines
611 B
Rust
28 lines
611 B
Rust
// Copyright 2019-2024 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
use tauri::{State, command};
|
|
|
|
#[command]
|
|
pub fn cmd(_argument: String) {}
|
|
|
|
#[command]
|
|
pub fn invoke(_argument: String) {}
|
|
|
|
#[command]
|
|
pub fn message(_argument: String) {}
|
|
|
|
#[command]
|
|
pub fn resolver(_argument: String) {}
|
|
|
|
#[command]
|
|
pub fn simple_command(the_argument: String) {
|
|
println!("{the_argument}");
|
|
}
|
|
|
|
#[command]
|
|
pub fn stateful_command(the_argument: Option<String>, state: State<'_, super::MyState>) {
|
|
println!("{:?} {:?}", the_argument, state.inner());
|
|
}
|