Unggahan awal

This commit is contained in:
2026-04-14 18:36:14 +07:00
parent 240227ce02
commit 9db8123021
43 changed files with 713 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
import { invoke } from '@tauri-apps/api/core'
export async function ping(value: string): Promise<string | null> {
return await invoke<{value?: string}>('plugin:bluclas|ping', {
payload: {
value,
},
}).then((r) => (r.value ? r.value : null));
}