From a44e566bdadb06c0a4dd9bf1d4828073370367f6 Mon Sep 17 00:00:00 2001 From: N3ko Date: Mon, 11 Aug 2025 11:42:13 +0800 Subject: [PATCH] chore: remove imageunderstand redundant code (#682) --- .../imageunderstand/imageunderstand.go | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100644 backend/infra/contract/document/imageunderstand/imageunderstand.go diff --git a/backend/infra/contract/document/imageunderstand/imageunderstand.go b/backend/infra/contract/document/imageunderstand/imageunderstand.go deleted file mode 100644 index 0c9df49d..00000000 --- a/backend/infra/contract/document/imageunderstand/imageunderstand.go +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright 2025 coze-dev Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package imageunderstand - -import "context" - -type ImageUnderstand interface { - ImageUnderstand(ctx context.Context, image []byte) (content string, err error) -}