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";