From 0544fab1356711dd2f87bbed5fff958a748bab34 Mon Sep 17 00:00:00 2001 From: zhouchengrong Date: Wed, 5 Jun 2024 14:44:33 +0800 Subject: [PATCH] =?UTF-8?q?feat=20generate=20product=20image=20=E9=83=A8?= =?UTF-8?q?=E7=BD=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/api_route.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/api/api_route.py b/app/api/api_route.py index 45ce4b3..c2bd2d2 100644 --- a/app/api/api_route.py +++ b/app/api/api_route.py @@ -8,7 +8,6 @@ from app.api import api_design from app.api import api_chat_robot from app.api import api_prompt_generation from app.api import api_design_pre_processing -from app.api import api_slogan router = APIRouter() @@ -21,4 +20,3 @@ router.include_router(api_design.router, tags=['design'], prefix="/api") router.include_router(api_chat_robot.router, tags=['chat_robot'], prefix="/api") router.include_router(api_prompt_generation.router, tags=['prompt_generation'], prefix="/api") router.include_router(api_design_pre_processing.router, tags=['design_pre_processing'], prefix="/api") -router.include_router(api_slogan.router, tags=['slogan'], prefix="/api")