From a3448176764d1d9d416f831d96e6b923f7ef7fc9 Mon Sep 17 00:00:00 2001 From: zstar <65890619+zstar1003@users.noreply.github.com> Date: Sat, 17 May 2025 12:16:19 +0800 Subject: [PATCH] =?UTF-8?q?refactor(=E4=BC=9A=E8=AF=9D=E7=AE=A1=E7=90=86):?= =?UTF-8?q?=20=E7=A7=BB=E9=99=A4=E6=9C=AA=E4=BD=BF=E7=94=A8=E7=9A=84?= =?UTF-8?q?=E5=AF=B9=E8=AF=9D=E8=AF=A6=E6=83=85=E6=8E=A5=E5=8F=A3=E5=AF=BC?= =?UTF-8?q?=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- management/server/routes/conversation/routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/management/server/routes/conversation/routes.py b/management/server/routes/conversation/routes.py index 00d0c48..08f53ec 100644 --- a/management/server/routes/conversation/routes.py +++ b/management/server/routes/conversation/routes.py @@ -1,5 +1,5 @@ from flask import jsonify, request -from services.conversation.service import get_conversations_by_user_id, get_messages_by_conversation_id, get_conversation_detail +from services.conversation.service import get_conversations_by_user_id, get_messages_by_conversation_id from .. import conversation_bp