mirror of
https://github.com/langgenius/dify.git
synced 2026-02-23 03:17:57 +08:00
9 lines
267 B
Python
9 lines
267 B
Python
from core.plugin.manager.debugging import PluginDebuggingManager
|
|
|
|
|
|
class PluginDebuggingService:
|
|
@staticmethod
|
|
def get_plugin_debugging_key(tenant_id: str) -> str:
|
|
manager = PluginDebuggingManager()
|
|
return manager.get_debugging_key(tenant_id)
|