From a22a78fa0a4a6e3a5f4d68072780790c78c17dc4 Mon Sep 17 00:00:00 2001 From: muwoo <2424880409@qq.com> Date: Mon, 24 Jan 2022 14:42:49 +0800 Subject: [PATCH] :sparkles: suport linux --- src/core/index.ts | 2 -- src/renderer/plugins-manager/index.ts | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/core/index.ts b/src/core/index.ts index dc215f7..f76f8f6 100644 --- a/src/core/index.ts +++ b/src/core/index.ts @@ -1,9 +1,7 @@ -import appSearch from "@/core/app-search"; import PluginHandler from "@/core/plugin-handler"; import LocalDb from "@/core/db"; export { - appSearch, PluginHandler, LocalDb, }; diff --git a/src/renderer/plugins-manager/index.ts b/src/renderer/plugins-manager/index.ts index 4cec3f1..e0dd5aa 100644 --- a/src/renderer/plugins-manager/index.ts +++ b/src/renderer/plugins-manager/index.ts @@ -1,6 +1,7 @@ import { reactive, toRefs, ref } from "vue"; import { nativeImage, remote, ipcRenderer } from "electron"; -import { appSearch, PluginHandler } from "@/core"; +import appSearch from "@/core/app-search"; +import { PluginHandler } from "@/core"; import path from "path"; import commonConst from "@/common/utils/commonConst"; import { execSync } from "child_process";