Spaces:
Runtime error
Runtime error
fix(app): correct import of routes
Browse files
app.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
from fastapi import FastAPI
|
| 2 |
-
from routes import user_routes,organization_routes, prediction_routes
|
| 3 |
from src.routes import user_routes
|
| 4 |
|
| 5 |
app = FastAPI(title="NetSentinel Backend")
|
|
|
|
| 1 |
from fastapi import FastAPI
|
| 2 |
+
from src.routes import user_routes,organization_routes, prediction_routes
|
| 3 |
from src.routes import user_routes
|
| 4 |
|
| 5 |
app = FastAPI(title="NetSentinel Backend")
|