Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -860,11 +860,12 @@ async def get_categories():
|
|
| 860 |
"description": "Categories for spiritual and personal development journeys"
|
| 861 |
}
|
| 862 |
|
| 863 |
-
|
|
|
|
| 864 |
async def documentation():
|
| 865 |
-
|
| 866 |
-
|
| 867 |
-
|
| 868 |
|
| 869 |
@app.get("/", response_class=HTMLResponse)
|
| 870 |
async def root():
|
|
|
|
| 860 |
"description": "Categories for spiritual and personal development journeys"
|
| 861 |
}
|
| 862 |
|
| 863 |
+
# Abdullah bot app.py
|
| 864 |
+
@app.get("/documentation")
|
| 865 |
async def documentation():
|
| 866 |
+
from fastapi.responses import RedirectResponse
|
| 867 |
+
return RedirectResponse("https://aero-woad.vercel.app/abdullah-docs.html")
|
| 868 |
+
|
| 869 |
|
| 870 |
@app.get("/", response_class=HTMLResponse)
|
| 871 |
async def root():
|