Spaces:
Sleeping
Sleeping
Commit ·
2fd2608
1
Parent(s): dc83e3b
fix: force Docker SDK and resolve HTML/JSON conflict for validator
Browse files- backend/app/main.py +4 -0
backend/app/main.py
CHANGED
|
@@ -59,3 +59,7 @@ async def state():
|
|
| 59 |
@app.get("/health")
|
| 60 |
async def health():
|
| 61 |
return {"status": "ok"}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
@app.get("/health")
|
| 60 |
async def health():
|
| 61 |
return {"status": "ok"}
|
| 62 |
+
|
| 63 |
+
@app.get("/")
|
| 64 |
+
async def root():
|
| 65 |
+
return {"status": "active", "api": "OpenEnv Compliance API"}
|