mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-07 10:22:29 +02:00
* feat(core): add `WindowEvent::FileDrop`, closes #3664 * refactor(core): use the event loop proxy to send updater events * simplify generics with user event trait * fix tray impl
10 lines
227 B
Rust
Executable File
10 lines
227 B
Rust
Executable File
{{#if license_header}}
|
|
{{ license_header }}
|
|
{{/if}}
|
|
use tauri::{plugin::{Builder, TauriPlugin}, Runtime};
|
|
|
|
/// Initializes the plugin.
|
|
pub fn init<R: Runtime>() -> TauriPlugin<R> {
|
|
Builder::new("{{ plugin_name }}").build()
|
|
}
|