mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-21 16:21:25 +02:00
Fix lint error
This commit is contained in:
@@ -1973,7 +1973,7 @@ pub fn run() {
|
|||||||
.run(|app_handle, event| {
|
.run(|app_handle, event| {
|
||||||
match event {
|
match event {
|
||||||
RunEvent::Ready => {
|
RunEvent::Ready => {
|
||||||
let w = window::create_main_window(app_handle, "/");
|
let _ = window::create_main_window(app_handle, "/");
|
||||||
let h = app_handle.clone();
|
let h = app_handle.clone();
|
||||||
tauri::async_runtime::spawn(async move {
|
tauri::async_runtime::spawn(async move {
|
||||||
let info = history::store_launch_history(&h).await;
|
let info = history::store_launch_history(&h).await;
|
||||||
|
|||||||
@@ -18,8 +18,8 @@ use yaak_models::queries::{
|
|||||||
use yaak_plugins::events::{
|
use yaak_plugins::events::{
|
||||||
Color, DeleteKeyValueResponse, EmptyPayload, FindHttpResponsesResponse,
|
Color, DeleteKeyValueResponse, EmptyPayload, FindHttpResponsesResponse,
|
||||||
GetHttpRequestByIdResponse, GetKeyValueResponse, Icon, InternalEvent, InternalEventPayload,
|
GetHttpRequestByIdResponse, GetKeyValueResponse, Icon, InternalEvent, InternalEventPayload,
|
||||||
RenderHttpRequestResponse, RenderPurpose, SendHttpRequestResponse, SetKeyValueResponse,
|
RenderHttpRequestResponse, SendHttpRequestResponse, SetKeyValueResponse, ShowToastRequest,
|
||||||
ShowToastRequest, TemplateRenderResponse, WindowContext, WindowNavigateEvent,
|
TemplateRenderResponse, WindowContext, WindowNavigateEvent,
|
||||||
};
|
};
|
||||||
use yaak_plugins::manager::PluginManager;
|
use yaak_plugins::manager::PluginManager;
|
||||||
use yaak_plugins::plugin_handle::PluginHandle;
|
use yaak_plugins::plugin_handle::PluginHandle;
|
||||||
|
|||||||
Reference in New Issue
Block a user