Spaces:
Sleeping
Sleeping
Orden endpoints
Browse files- app/main.py +3 -2
app/main.py
CHANGED
|
@@ -8,9 +8,10 @@ app = FastAPI(
|
|
| 8 |
version="0.1.0",
|
| 9 |
)
|
| 10 |
|
| 11 |
-
app.include_router(router)
|
| 12 |
-
|
| 13 |
|
| 14 |
@app.get("/health")
|
| 15 |
async def health():
|
| 16 |
return {"status": "ok"}
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
version="0.1.0",
|
| 9 |
)
|
| 10 |
|
|
|
|
|
|
|
| 11 |
|
| 12 |
@app.get("/health")
|
| 13 |
async def health():
|
| 14 |
return {"status": "ok"}
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
app.include_router(router)
|