mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-01-31 00:35:19 +01:00
27 lines
590 B
Swift
27 lines
590 B
Swift
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import SwiftRs
|
|
import Tauri
|
|
import UIKit
|
|
import WebKit
|
|
|
|
class PingArgs: Decodable {
|
|
let value: String?
|
|
let onEvent: Channel?
|
|
}
|
|
|
|
class ExamplePlugin: Plugin {
|
|
@objc public func ping(_ invoke: Invoke) throws {
|
|
let args = try invoke.parseArgs(PingArgs.self)
|
|
args.onEvent?.send(["kind": "ping"])
|
|
invoke.resolve(["value": args.value ?? ""])
|
|
}
|
|
}
|
|
|
|
@_cdecl("init_plugin_sample")
|
|
func initPlugin() -> Plugin {
|
|
return ExamplePlugin()
|
|
}
|