From 3f84381ea986e79980ab05f6ef00cf0daf760f13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn?= <63993644+elJoa@users.noreply.github.com> Date: Fri, 23 Jul 2021 08:44:17 -0300 Subject: [PATCH] fix[docs]: Fix import in the Plugin example (#2224) --- docs/usage/guides/plugin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/guides/plugin.md b/docs/usage/guides/plugin.md index 380ea8711..2dfff6c7a 100644 --- a/docs/usage/guides/plugin.md +++ b/docs/usage/guides/plugin.md @@ -17,7 +17,7 @@ Plugins allow you to hook into the Tauri application lifecycle and introduce new To write a plugin you just need to implement the `tauri::plugin::Plugin` trait: ```rust -use tauri::{plugin::{Plugin, Result as PluginResult}, runtime::Runtime, PageLoadPayload, Window, Invoke, App}; +use tauri::{plugin::{Plugin, Result as PluginResult}, Runtime, PageLoadPayload, Window, Invoke, App}; struct MyAwesomePlugin { invoke_handler: Box) + Send + Sync>,