feat: get debugging key

This commit is contained in:
Yeuoly
2024-09-20 15:08:39 +08:00
parent 9693b5ad0c
commit 2223dfb266
6 changed files with 45 additions and 6 deletions

View File

@ -12,6 +12,6 @@ class PluginDebuggingManager(BasePluginManager):
class Response(BaseModel):
key: str
response = self._request_with_plugin_daemon_response("POST", f"/plugin/{tenant_id}/debugging/key", Response)
response = self._request_with_plugin_daemon_response("POST", f"plugin/{tenant_id}/debugging/key", Response)
return response.key