mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-03 10:11:15 +02:00
17 lines
348 B
Rust
17 lines
348 B
Rust
{{#if license_header}}
|
|
{{ license_header }}
|
|
{{/if}}
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Serialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct PingRequest {
|
|
pub value: Option<String>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Default, Deserialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct PingResponse {
|
|
pub value: Option<String>,
|
|
}
|