File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
import uvicorn
2
2
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
6
6
# import other API routers as needed
7
7
8
8
app = FastAPI ()
9
9
10
10
11
- # Mount the API routers
12
- app .include_router (api1_router )
11
+ # Mount the API routerss
12
+ # app.include_router(api1_router)
13
13
app .include_router (summariser )
14
- app .include_router (api4_router )
14
+ # app.include_router(api4_router)
15
15
16
16
# include other API routers as needed
17
17
You can’t perform that action at this time.
0 commit comments