From 3f782d728f97bfda5fa4e941dc052ca405f6de20 Mon Sep 17 00:00:00 2001 From: mrh997 Date: Wed, 30 Jul 2025 22:56:03 +0800 Subject: [PATCH] fix(plugin): compile failed (#359) --- backend/application/base/pluginutil/api.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/backend/application/base/pluginutil/api.go b/backend/application/base/pluginutil/api.go index ec866777..fc8fbb22 100644 --- a/backend/application/base/pluginutil/api.go +++ b/backend/application/base/pluginutil/api.go @@ -20,13 +20,11 @@ import ( "net/http" "strconv" - "github.com/getkin/kin-openapi/openapi3" - "github.com/coze-dev/coze-studio/backend/domain/plugin/entity" + "github.com/getkin/kin-openapi/openapi3" "github.com/coze-dev/coze-studio/backend/api/model/crossdomain/plugin" common "github.com/coze-dev/coze-studio/backend/api/model/plugin_develop_common" - "github.com/coze-dev/coze-studio/backend/domain/plugin/entity" "github.com/coze-dev/coze-studio/backend/pkg/errorx" "github.com/coze-dev/coze-studio/backend/types/errno" )