From 1948fb78bd8e55b23be15f211d1f6f6136a603f0 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Mon, 23 Jun 2025 08:57:31 -0700 Subject: [PATCH] Fix bad import --- src-tauri/yaak-plugins/src/api.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src-tauri/yaak-plugins/src/api.rs b/src-tauri/yaak-plugins/src/api.rs index e8aa95ab..ba64d258 100644 --- a/src-tauri/yaak-plugins/src/api.rs +++ b/src-tauri/yaak-plugins/src/api.rs @@ -1,5 +1,3 @@ -use crate::error::Error::ApiErr; -use crate::commands::{PluginSearchResponse, PluginVersion}; use crate::error::Result; use crate::plugin_meta::get_plugin_meta; use log::{info, warn}; @@ -7,7 +5,6 @@ use reqwest::{Response, Url}; use serde::{Deserialize, Serialize}; use std::path::Path; use std::str::FromStr; -use log::info; use tauri::{AppHandle, Runtime, is_dev}; use ts_rs::TS; use yaak_common::api_client::yaak_api_client;