Skip to content

Commit fcce207

Browse files
committed
Update main.py
1 parent 85ac6bf commit fcce207

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

main.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
import uvicorn
22
from fastapi import FastAPI
3-
from Backend.pyqsorter import router as api1_router
4-
from Backend.test import router_summariser as summariser
5-
from Backend.Notes_Analyser import router as api4_router
3+
#from Backend.pyqsorter import router as api1_router
4+
from Backend.summariser import router_summariser as summariser
5+
#from Backend.Notes_Analyser import router as api4_router
66
# import other API routers as needed
77

88
app = FastAPI()
99

1010

11-
# Mount the API routers
12-
app.include_router(api1_router)
11+
# Mount the API routerss
12+
#app.include_router(api1_router)
1313
app.include_router(summariser)
14-
app.include_router(api4_router)
14+
#app.include_router(api4_router)
1515

1616
# include other API routers as needed
1717

0 commit comments

Comments
 (0)