(
bot_id: str,
_auth: AuthContext = Depends(require_bot_scope),
)
| 156 | |
| 157 | @router.post("/bots/{bot_id:path}/test") |
| 158 | async def test_bot( |
| 159 | bot_id: str, |
| 160 | _auth: AuthContext = Depends(require_bot_scope), |
| 161 | ): |
| 162 | return ok({"id": bot_id, "status": "unsupported"}) |
| 163 | |
| 164 | |
| 165 | @router.get("/bots/{bot_id:path}") |