From 991ebeb6fd868790d73b44582c1225a70b81daef Mon Sep 17 00:00:00 2001 From: henry4682 Date: Tue, 10 Mar 2026 10:35:19 +0800 Subject: [PATCH] feat: linebot change main.py the way import --- app/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/main.py b/app/main.py index 49a99e8..ad49377 100644 --- a/app/main.py +++ b/app/main.py @@ -2,9 +2,9 @@ import nest_asyncio nest_asyncio.apply() from fastapi import FastAPI -from app.line.router import router as line_router -from app.invoice.router import router as invoice_router -from app.trading.router import router as trading_router +from line.router import router as line_router +from invoice.router import router as invoice_router +from trading.router import router as trading_router app = FastAPI()