Spaces:
Running
Running
Commit
·
364e12d
1
Parent(s):
fe1ffbc
Refactor main.py to import Response from fastapi
Browse files- app/main.py +1 -1
app/main.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
|
2 |
-
from fastapi import FastAPI, Request
|
3 |
from fastapi.responses import JSONResponse
|
4 |
from app.api.routes import router
|
5 |
from app.core.logging_config import configure_logging
|
|
|
1 |
|
2 |
+
from fastapi import FastAPI, Request, Response
|
3 |
from fastapi.responses import JSONResponse
|
4 |
from app.api.routes import router
|
5 |
from app.core.logging_config import configure_logging
|